LitS3.S3Request.S3Request C# (CSharp) Method

S3Request() private method

private S3Request ( S3Service service, string method, string bucketName, string objectKey, string queryString ) : System
service S3Service
method string
bucketName string
objectKey string
queryString string
return System
        internal S3Request(S3Service service, string method, string bucketName, string objectKey,
            string queryString)
        {
            this.Service = service;
            this.bucketName = bucketName;
            this.WebRequest = CreateWebRequest(method, objectKey, queryString);
            GreenQloud.Logger.LogInfo("INFO S3 REQUEST", this.WebRequest.RequestUri.AbsoluteUri);
        }