Click or drag to resize

CompressorType Enumeration

Represents the compressor type.

Namespace:  MongoDB.Driver.Core.Compression
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax
public enum CompressorType
Members
  Member nameValueDescription
Noop0 The content of the message is uncompressed. This is realistically only used for testing.
Snappy1 The content of the message is compressed using snappy.
Zlib2 The content of the message is compressed using zlib.
ZStandard3 The content of the message is compressed using zstandard.
See Also