MultipartFormDataRemoteStreamProvider.ExecutePostProcessingAsync Method

 

Namespace:   System.Net.Http
Assembly:  System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)

Overload List

Name Description
System_CAPS_pubmethod ExecutePostProcessingAsync()

Read the non-file contents as form data.(Overrides MultipartStreamProvider.ExecutePostProcessingAsync().)

System_CAPS_pubmethod ExecutePostProcessingAsync(CancellationToken)

Read the non-file contents as form data.(Overrides MultipartStreamProvider.ExecutePostProcessingAsync(CancellationToken).)

See Also

MultipartFormDataRemoteStreamProvider Class
System.Net.Http Namespace

Return to top

MultipartFormDataRemoteStreamProvider.ExecutePostProcessingAsync Method ()

Read the non-file contents as form data.

Syntax

public override Task ExecutePostProcessingAsync()
public:
virtual Task^ ExecutePostProcessingAsync() override
override ExecutePostProcessingAsync : unit -> Task
Public Overrides Function ExecutePostProcessingAsync As Task

Return Value

Type: System.Threading.Tasks.Task

A Task representing the post processing.

Return to top

MultipartFormDataRemoteStreamProvider.ExecutePostProcessingAsync Method (CancellationToken)

Read the non-file contents as form data.

Syntax

public override Task ExecutePostProcessingAsync(
    CancellationToken cancellationToken
)
public:
virtual Task^ ExecutePostProcessingAsync(
    CancellationToken cancellationToken
) override
override ExecutePostProcessingAsync : 
        cancellationToken:CancellationToken -> Task
Public Overrides Function ExecutePostProcessingAsync (
    cancellationToken As CancellationToken
) As Task

Parameters

Return Value

Type: System.Threading.Tasks.Task

A Task representing the post processing.

Return to top