AWS Lambda 사용에 관련된 Tip

그동안 AWS Lambda를 사용하면서 알게된 내용들과 최근 읽은 Lambda 관련 포스팅 내용들을 정리해 보았다.

Continue reading

Get Request Body in Action Method

string body = "";
Request.InputStream.Seek(0, SeekOrigin.Begin);
using (StreamReader reader = new StreamReader(Request.InputStream))
{
    body = reader.ReadToEnd();
}

Continue reading

Pagination