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.15.0+f503bf610759c13f78cff9a3c01e91453185d2ed
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