Class DeflateGetter
ICompressorGetter that constructs a DeflateStream that can be used to extract compressed information from a Stream.
Implements
Inherited Members
Namespace: TheXDS.MCART.Resources
Assembly: MCART.dll
Syntax
[Tag("deflate")]
public sealed class DeflateGetter : 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 DeflateStream to extract compressed
information 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 DeflateStream that can be used to extract
compressed information from |