MultipartResponse
Provides support for creating and parsing multipart/mixed content.
This is implementing a couple of layered standards as mentioned at
https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch and
https://docs.microsoft.com/en-us/rest/api/storageservices/performing-entity-group-transactions
including https://www.odata.org/documentation/odata-version-3-0/batch-processing/
and https://www.ietf.org/rfc/rfc2046.txt.
public static Response[] Parse(Response response, bool expectCrLf, CancellationToken cancellationToken)
Parse a multipart/mixed response body into several responses.
public static Task<Response[]> ParseAsync(Response response, bool expectCrLf, CancellationToken cancellationToken)
Parse a multipart/mixed response body into several responses.