Action
![[ASP.NET Core Web API] Action Method - 요청](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FbWPCRM%2Fbtq0ZLuFWaq%2FAAAAAAAAAAAAAAAAAAAAAFVH1SgIlHNDpmLjpSqGn0z7enxls36m1NinICxEB8R2%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3D1uxpOIzPpD2njqchhudakm6pvoY%253D)
[ASP.NET Core Web API] Action Method - 요청
해당 글은 아래 글에서 이어집니다. [.NET/ASP.NET] - [ASP.NET Core Web API] 프로젝트및 Controller 생성 [ASP.NET Core Web API] 프로젝트및 Controller 생성 1. 프로젝트 Web API 기본사항에 대해 알아보기 위한 간단한 테스트 프로젝트를 만들어 봅니다. Visual Studio(2019)에서 프로젝트를 오른쪽 항목에서 'ASP.NET Core Web API (C#)'프로젝트로 선택하고 'Next'버 lab.cliel.com 다음은 예제로 작성된 액션 메서드입니다. [HttpGet] public string Get() { return "hello"; } 예제에서 작성된 Get() 메서드는 HttpGet 어트리뷰트에 따라 클라이언트의 Get요..