MultipartStreamProvider.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()

Executes the post processing operation for this MultipartStreamProvider.

System_CAPS_pubmethod ExecutePostProcessingAsync(CancellationToken)

Executes the post processing operation for this MultipartStreamProvider.

See Also

MultipartStreamProvider Class
System.Net.Http Namespace

Return to top

MultipartStreamProvider.ExecutePostProcessingAsync Method ()

Executes the post processing operation for this MultipartStreamProvider.

Syntax

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

Return Value

Type: System.Threading.Tasks.Task

The asynchronous task for this operation.

Return to top

MultipartStreamProvider.ExecutePostProcessingAsync Method (CancellationToken)

Executes the post processing operation for this MultipartStreamProvider.

Syntax

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

Parameters

Return Value

Type: System.Threading.Tasks.Task

The asynchronous task for this operation.

Return to top