ConoHaNet.OpenStackMember.GetObjectSaveToFile C# (CSharp) Method

GetObjectSaveToFile() public method

public GetObjectSaveToFile ( string container, string saveDirectory, string objectName, string fileName = null, int chunkSize = 65536, string>.Dictionary headers = null, bool verifyEtag = false, Action progressUpdated = null, bool useInternalUrl = false ) : void
container string
saveDirectory string
objectName string
fileName string
chunkSize int
headers string>.Dictionary
verifyEtag bool
progressUpdated Action
useInternalUrl bool
return void
        public void GetObjectSaveToFile(string container, string saveDirectory, string objectName, string fileName = null, int chunkSize = 65536, Dictionary<string, string> headers = null, bool verifyEtag = false, Action<long> progressUpdated = null, bool useInternalUrl = false)
        {
            FilesProvider.GetObjectSaveToFile(container, saveDirectory, objectName, fileName, chunkSize, headers, this.DefaultRegion, verifyEtag, progressUpdated, useInternalUrl, this.Identity);
        }
OpenStackMember