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.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
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