Click or drag to resize

GuidRepresentation Enumeration

Represents the representation to use when converting a Guid to a BSON binary value.

Namespace:  MongoDB.Bson
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax
[SerializableAttribute]
public enum GuidRepresentation
Members
  Member nameValueDescription
Unspecified0 The representation for Guids is unspecified, so conversion between Guids and Bson binary data is not possible.
Standard1 Use the new standard representation for Guids (binary subtype 4 with bytes in network byte order).
CSharpLegacy2 Use the representation used by older versions of the C# driver (including most community provided C# drivers).
JavaLegacy3 Use the representation used by older versions of the Java driver.
PythonLegacy4 Use the representation used by older versions of the Python driver.
See Also