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);
        }