Interface ICompressorGetter
Defines a series of methods to be implemented by a class that allows getting a Stream to extract compressed information from another Stream.
Namespace: TheXDS.MCART.Resources
Assembly: MCART.dll
Syntax
public interface ICompressorGetter
Properties
| Edit this page View SourceExtension
Gets the extension used by default for a compressed resource using this ICompressorGetter.
Declaration
string Extension { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
| Edit this page View SourceGetCompressor(Stream)
Gets a Stream to extract compressed information
from inputStream.
Declaration
Stream GetCompressor(Stream inputStream)
Parameters
| Type | Name | Description |
|---|---|---|
| Stream | inputStream | Stream containing the information to extract. |
Returns
| Type | Description |
|---|---|
| Stream | A Stream that can be used to extract
compressed information from |