标签: c# json vb.net post
如何获取使用HttpClient作为继承类发布的Json消息。我需要整个消息,包括IP地址。
HttpResponseMessage response = await this.PostAsync("doSingle", new JsonContent(request));
我知道我可以使用
TResult result = await response.Content.ReadAsJsonAsync<TResult>();