Beispiel #1
0
 public S3OutputMethod(S3OutputMethod template)
 {
     s3adaptor     = template.s3adaptor;
     bucketName    = template.bucketName;
     basePath      = template.basePath;
     bucketCreated = template.bucketCreated;
 }
		public S3OutputMethod(S3OutputMethod template)
		{
			this.s3adaptor = template.s3adaptor;
			this.bucketName = template.bucketName;
			this.basePath = template.basePath;
			this.bucketCreated = template.bucketCreated;
		}
Beispiel #3
0
 public S3PutClosure(S3OutputMethod s3OutputMethod, string s3key, string contentType)
 {
     this.s3OutputMethod = s3OutputMethod;
     this.s3key          = s3key;
     this.contentType    = contentType;
 }
			public S3PutClosure(S3OutputMethod s3OutputMethod, string s3key, string contentType)
			{
				this.s3OutputMethod = s3OutputMethod;
				this.s3key = s3key;
				this.contentType = contentType;
			}