Akamai.NetStorage.NetStorage.execute C# (CSharp) Method

execute() private method

private execute ( string method, string path, Akamai.Netstorage.APIParams acsParams, Stream uploadStream = null ) : Stream
method string
path string
acsParams Akamai.Netstorage.APIParams
uploadStream Stream
return Stream
        internal Stream execute(string method, string path, APIParams acsParams, Stream uploadStream = null)
        {
            return new NetstorageCMSv35Signer(
                method,
                this.getNetStorageUri(path),
                this.Username,
                this.Key,
                acsParams,
                uploadStream).Execute(this.Request);
        }