namespace SevenZip
{ /// <summary> /// The exception that is thrown when an error in input stream occurs during decoding. /// </summary> class DataErrorException : ApplicationException
{ public DataErrorException(): base("Data Error") { }
}
/// <summary> /// The exception that is thrown when the value of an argument is outside the allowable range. /// </summary> class InvalidParamException : ApplicationException
{ public InvalidParamException(): base("Invalid Parameter") { }
}
/// <summary> /// Provides the fields that represent properties idenitifiers for compressing. /// </summary> publicenum CoderPropID
{ /// <summary> /// Specifies default property. /// </summary>
DefaultProp = 0, /// <summary> /// Specifies size of dictionary. /// </summary>
DictionarySize, /// <summary> /// Specifies size of memory for PPM*. /// </summary>
UsedMemorySize, /// <summary> /// Specifies order for PPM methods. /// </summary>
Order, /// <summary> /// Specifies Block Size. /// </summary>
BlockSize, /// <summary> /// Specifies number of postion state bits for LZMA (0 <= x <= 4). /// </summary>
PosStateBits, /// <summary> /// Specifies number of literal context bits for LZMA (0 <= x <= 8). /// </summary>
LitContextBits, /// <summary> /// Specifies number of literal position bits for LZMA (0 <= x <= 4). /// </summary>
LitPosBits, /// <summary> /// Specifies number of fast bytes for LZ*. /// </summary>
NumFastBytes, /// <summary> /// Specifies match finder. LZMA: "BT2", "BT4" or "BT4B". /// </summary>
MatchFinder, /// <summary> /// Specifies the number of match finder cyckes. /// </summary>
MatchFinderCycles, /// <summary> /// Specifies number of passes. /// </summary>
NumPasses, /// <summary> /// Specifies number of algorithm. /// </summary>
Algorithm, /// <summary> /// Specifies the number of threads. /// </summary>
NumThreads, /// <summary> /// Specifies mode with end marker. /// </summary>
EndMarker
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.