Show / Hide Table of Contents

Struct CompressionSettings

The compression relevant settings (such as buffer size, compression level, etc...).

Inherited Members
ValueType.Equals(object)
ValueType.GetHashCode()
ValueType.ToString()
object.Equals(object, object)
object.GetType()
object.ReferenceEquals(object, object)
Namespace: GlitchedPolygons.Services.CompressionUtility
Assembly: GlitchedPolygons.Services.CompressionUtility.dll
Syntax
public struct CompressionSettings

Fields

bufferSize

The size of the underlying stream buffer. A reasonable value could be 65536

Declaration
public int bufferSize
Field Value
Type Description
int

compressionLevel

Choose the desired compression level.

The default value favors speed over maximum efficiency.
Declaration
public CompressionLevel compressionLevel
Field Value
Type Description
CompressionLevel

Properties

Default

General-purpose default settings for compressing and decompressing all kinds of data. When unsure, use this!

Declaration
public static CompressionSettings Default { get; }
Property Value
Type Description
CompressionSettings
Back to top Generated by DocFX