Share via


FormMultipartSection.GetValueAsync Method

Definition

Overloads

GetValueAsync()

Gets the form value

GetValueAsync(CancellationToken)

Gets the form value

GetValueAsync()

Source:
FormMultipartSection.cs
Source:
FormMultipartSection.cs
Source:
FormMultipartSection.cs

Gets the form value

public:
 System::Threading::Tasks::Task<System::String ^> ^ GetValueAsync();
public System.Threading.Tasks.Task<string> GetValueAsync ();
member this.GetValueAsync : unit -> System.Threading.Tasks.Task<string>
Public Function GetValueAsync () As Task(Of String)

Returns

The form value

Applies to

GetValueAsync(CancellationToken)

Source:
FormMultipartSection.cs

Gets the form value

public System.Threading.Tasks.ValueTask<string> GetValueAsync (System.Threading.CancellationToken cancellationToken);
member this.GetValueAsync : System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<string>
Public Function GetValueAsync (cancellationToken As CancellationToken) As ValueTask(Of String)

Parameters

cancellationToken
CancellationToken

The cancellation token.

Returns

The form value

Applies to