Amazon.S3.Internal.AmazonS3HttpDeleteHandler.InvokeAsync C# (CSharp) Method

InvokeAsync() public method

Calls pre invoke logic before calling the next handler in the pipeline.
public InvokeAsync ( IAsyncExecutionContext executionContext ) : IAsyncResult
executionContext IAsyncExecutionContext The execution context which contains both the /// requests and response context.
return IAsyncResult
        public override IAsyncResult InvokeAsync(IAsyncExecutionContext executionContext)
        {
            PreInvoke(ExecutionContext.CreateFromAsyncContext(executionContext));
            return base.InvokeAsync(executionContext);
        }