FormReader.ReadFormAsync(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.
Parses an HTTP form body.
public System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string,Microsoft.Extensions.Primitives.StringValues>> ReadFormAsync (System.Threading.CancellationToken cancellationToken = default);
member this.ReadFormAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string, Microsoft.Extensions.Primitives.StringValues>>
Public Function ReadFormAsync (Optional cancellationToken As CancellationToken = Nothing) As Task(Of Dictionary(Of String, StringValues))
Parameters
- cancellationToken
- CancellationToken
The CancellationToken.
Returns
The collection containing the parsed HTTP form body.