ConoHaNet.OpenStackMember.ExtractArchive C# (CSharp) Method

ExtractArchive() public method

public ExtractArchive ( Stream stream, string uploadPath, ArchiveFormat archiveFormat, string contentType = null, int chunkSize = 4096, string>.Dictionary headers = null, Action progressUpdated = null, bool useInternalUrl = false ) : ExtractArchiveResponse
stream Stream
uploadPath string
archiveFormat ArchiveFormat
contentType string
chunkSize int
headers string>.Dictionary
progressUpdated Action
useInternalUrl bool
return ExtractArchiveResponse
        public ExtractArchiveResponse ExtractArchive(Stream stream, string uploadPath, ArchiveFormat archiveFormat, string contentType = null, int chunkSize = 4096, Dictionary<string, string> headers = null, Action<long> progressUpdated = null, bool useInternalUrl = false)
        {
            return FilesProvider.ExtractArchive(stream, uploadPath, archiveFormat, contentType, chunkSize, headers, this.DefaultRegion, progressUpdated, useInternalUrl, this.Identity);
        }
OpenStackMember