11
WebAPI 다중 Put / Post 매개 변수
WebAPI 컨트롤러에 여러 매개 변수를 게시하려고합니다. 하나의 매개 변수는 URL에서, 다른 하나는 본문에서입니다. URL은 다음과 같습니다. /offers/40D5E19D-0CD5-4FBD-92F8-43FDBB475333/prices/ 내 컨트롤러 코드는 다음과 같습니다. public HttpResponseMessage Put(Guid offerId, OfferPriceParameters offerPriceParameters) { //What!? var ser = new DataContractJsonSerializer(typeof(OfferPriceParameters)); HttpContext.Current.Request.InputStream.Position = 0; var what = ser.ReadObject(HttpContext.Current.Request.InputStream); return new HttpResponseMessage(HttpStatusCode.Created); } 본문의 내용은 JSON입니다. { …
154
.net
asp.net-web-api