Execute() public method

public Execute ( ) : void
return void
コード例 #1
0
 /// <summary>
 /// 	Aborts the multipart uploads that were initiated before the specified date.
 /// </summary>
 /// <param name="bucketName">
 /// 	The name of the bucket containing multipart uploads.
 /// </param>
 /// <param name="initiatedDate">
 /// 	The date before which the multipart uploads were initiated.
 /// </param>
 public void AbortMultipartUploads(string bucketName, DateTime initiatedDate)
 {
     BaseCommand command = new AbortMultipartUploadsCommand(this._s3Client, bucketName, initiatedDate);
     command.Execute();
 }