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

PreInvoke() protected method

Custom pipeline handler to add Content-Type application/x-www-form-urlencoded to http DELETE requests if using Unity Android. The underlying http handler adds this if no Content-Type is supplied, which would result in an inaccurate signature.
protected PreInvoke ( IExecutionContext executionContext ) : void
executionContext IExecutionContext
return void
        protected virtual void PreInvoke(IExecutionContext executionContext)
        {
            var request = executionContext.RequestContext.OriginalRequest;
            ModifyDeleteRequest(executionContext);
        }