Amazon.S3.Util.AmazonS3Util.InvokeS3DeleteBucketWithObjectsUpdateCallback C# (CSharp) 메소드

InvokeS3DeleteBucketWithObjectsUpdateCallback() 개인적인 정적인 메소드

Invokes the callback which provides updated about the delete operation.
private static InvokeS3DeleteBucketWithObjectsUpdateCallback ( Action updateCallback, Amazon.S3.Util.S3DeleteBucketWithObjectsUpdate update ) : void
updateCallback Action The callback to be invoked.
update Amazon.S3.Util.S3DeleteBucketWithObjectsUpdate The data being passed to the callback.
리턴 void
        private static void InvokeS3DeleteBucketWithObjectsUpdateCallback(
            Action<S3DeleteBucketWithObjectsUpdate> updateCallback, S3DeleteBucketWithObjectsUpdate update)
        {
            if (updateCallback != null)
            {
                updateCallback(update);
            }
        }
    }