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.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
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