ConoHaNet.OpenStackMember.GetObject C# (CSharp) Method

GetObject() public method

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