Amazon.S3.Internal.AmazonS3HttpDeleteHandler.InvokeAsync C# (CSharp) Метод

InvokeAsync() публичный Метод

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.
Результат IAsyncResult
        public override IAsyncResult InvokeAsync(IAsyncExecutionContext executionContext)
        {
            PreInvoke(ExecutionContext.CreateFromAsyncContext(executionContext));
            return base.InvokeAsync(executionContext);
        }