зеркало из
1
0
Форкнуть 0

Supporting JSON-Patch in request body

This commit is contained in:
Justin Marks (MSFT) 2017-05-02 15:32:45 -07:00
Родитель 5b04f5441d
Коммит c2b6f2605f
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -88,16 +88,16 @@ namespace Microsoft.TeamServices.Samples.Client
responseHeaders[h.Key] = h.Value.First();
}
JObject requestBody = null;
dynamic requestBody = null;
try
{
string requestBodyString = await request.Content.ReadAsStringAsync();
if (!String.IsNullOrEmpty(requestBodyString))
{
requestBody = JObject.Parse(requestBodyString);
requestBody = JValue.Parse(requestBodyString);
}
}
catch (Exception) { }
catch (Exception e) { }
JObject responseBody = null;
try