BatchResponseContent Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Handles batch request responses.
public class BatchResponseContent
type BatchResponseContent = class
Public Class BatchResponseContent
- Inheritance
-
BatchResponseContent
Constructors
BatchResponseContent(HttpResponseMessage, ISerializer) |
Constructs a new BatchResponseContent |
Properties
Serializer |
Gets a serializer for serializing and deserializing JSON objects. |
Methods
GetNextLinkAsync() |
Gets the @NextLink of a batch response. |
GetResponseByIdAsync(String) |
Gets a batch response as HttpResponseMessage for the specified batch request id. The returned HttpResponseMessage MUST be disposed since it implements an IDisposable. |
GetResponseByIdAsync<T>(String) |
Gets a batch response as a requested type for the specified batch request id. |
GetResponsesAsync() |
Gets all batch responses Dictionary<TKey,TValue>. All HttpResponseMessage in the dictionary MUST be disposed since they implement IDisposable. |