Table of Contents

Class Marshaller

Namespace
Amazon.Runtime.Internal
Assembly
AWSSDK.Core.dll

This handler marshalls the request before calling invoking the next handler.

public class Marshaller : PipelineHandler, IPipelineHandler
Inheritance
Marshaller
Implements
Inherited Members

Constructors

Marshaller()

public Marshaller()

Methods

InvokeAsync<T>(IExecutionContext)

Calls pre invoke logic before calling the next handler in the pipeline.

public override Task<T> InvokeAsync<T>(IExecutionContext executionContext) where T : AmazonWebServiceResponse, new()

Parameters

executionContext IExecutionContext

The execution context, it contains the request and response context.

Returns

Task<T>

A task that represents the asynchronous operation.

Type Parameters

T

The response type for the current request.

InvokeSync(IExecutionContext)

Calls pre invoke logic before calling the next handler in the pipeline.

public override void InvokeSync(IExecutionContext executionContext)

Parameters

executionContext IExecutionContext

The execution context which contains both the requests and response context.

PreInvoke(IExecutionContext)

Marshalls the request before calling invoking the next handler.

protected static void PreInvoke(IExecutionContext executionContext)

Parameters

executionContext IExecutionContext

The execution context, it contains the request and response context.