Class GZipGetter
ICompressorGetter that builds a GZipStream that can be used to extract information compressed from a Stream.
Implements
Inherited Members
Namespace: TheXDS.MCART.Resources
Assembly: MCART.dll
Syntax
[Tag("gzip")]
[Tag("gz")]
public sealed class GZipGetter : ICompressorGetter
Properties
| Edit this page View SourceExtension
Gets the extension used by default for a compressed resource using this ICompressorGetter.
Declaration
public string Extension { get; }
Property Value
Type | Description |
---|---|
string |
Methods
| Edit this page View SourceGetCompressor(Stream)
Gets a GZipStream to extract information
compressed from inputStream
.
Declaration
public Stream GetCompressor(Stream inputStream)
Parameters
Type | Name | Description |
---|---|---|
Stream | inputStream | Stream containing the information to extract. |
Returns
Type | Description |
---|---|
Stream | A GZipStream that can be used to extract
information compressed from |