[MVC] Web API Request 데이터를 배열로 받을때
2020. 1. 30. 06:49
728x90
반응형
Get 방식
[HttpGet]
public HttpResponseMessage TeamInfo([FromUri] UInt64 [] to)
{
//to = new UInt64[100];
string result = string.Empty;
for ( int i = 0; i < to.Length; i++)
{
result += to[i].ToString();
}
var response = new HttpResponseMessage(HttpStatusCode .OK)
{
Content = new StringContent(result.ToString())
};
return response;
}
728x90
'.NET' 카테고리의 다른 글
[Core 3.1] ASP.NET Core ActionFilter를 이용한 Session 체크 (0) | 2020.02.20 |
---|---|
[.NET Core] ASP.NET Core 3.1 Areas(영역) 추가 방법 (0) | 2020.02.18 |
[Core 3.1] C# Dapper 설치 및 사용 (0) | 2020.01.21 |
[Core 3.1] ASP.NET Core 웹 프로젝트를 IIS 서버에 게시 (0) | 2020.01.17 |
[Core 3.1] ASP.NET Core 미들웨어 - 미들웨어 순서 (0) | 2020.01.08 |