Execute() public method

public Execute ( ) : void
return void
Example #1
0
 /// <summary>
 /// 	Downloads the objects in Amazon S3 that have a key that starts with the value 
 /// 	specified by the <c>S3Directory</c>
 /// 	property of the passed in <c>TransferUtilityDownloadDirectoryRequest</c> object.
 /// </summary>
 /// <param name="request">
 /// 	Contains all the parameters required to download objects from Amazon S3 
 /// 	into a local directory.
 /// </param>
 public void DownloadDirectory(TransferUtilityDownloadDirectoryRequest request)
 {
     BaseCommand command = new DownloadDirectoryCommand(this._s3Client, request);
     command.Execute();
 }