MultipartResponse.ParseAsync(Response, Boolean, CancellationToken) Method
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.
Parse a multipart/mixed response body into several responses.
public static System.Threading.Tasks.Task<Azure.Response[]> ParseAsync (Azure.Response response, bool expectCrLf, System.Threading.CancellationToken cancellationToken);
static member ParseAsync : Azure.Response * bool * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response[]>
Public Function ParseAsync (response As Response, expectCrLf As Boolean, cancellationToken As CancellationToken) As Task(Of Response())
Parameters
- response
- Response
The response containing multi-part content.
- expectCrLf
- Boolean
Controls whether the parser will expect all multi-part boundaries to use CRLF line breaks. This should be true unless more permissive line break parsing is required.
- cancellationToken
- CancellationToken
Optional CancellationToken to propagate notifications that the operation should be cancelled.
Returns
The parsed Responses.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for .NET