FormReader.ReadNextPairAsync(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.
Asynchronously reads the next key value pair from the form.
public System.Threading.Tasks.Task<System.Collections.Generic.KeyValuePair<string,string>?> ReadNextPairAsync (System.Threading.CancellationToken cancellationToken = default);
member this.ReadNextPairAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Nullable<System.Collections.Generic.KeyValuePair<string, string>>>
Public Function ReadNextPairAsync (Optional cancellationToken As CancellationToken = Nothing) As Task(Of Nullable(Of KeyValuePair(Of String, String)))
Parameters
- cancellationToken
- CancellationToken
Returns
The next key value pair, or null when the end of the form is reached.