ConoHaNet.OpenStackMember.ExtractArchiveFromFile C# (CSharp) Method

ExtractArchiveFromFile() public method

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