Enum GuidRepresentation
Represents the representation to use when converting a Guid to a BSON binary value.
[Serializable]
public enum GuidRepresentation- Extension Methods
Fields
- Unspecified = 0
- The representation for Guids is unspecified, so conversion between Guids and Bson binary data is not possible. 
- Standard = 1
- Use the new standard representation for Guids (binary subtype 4 with bytes in network byte order). 
- CSharpLegacy = 2
- Use the representation used by older versions of the C# driver (including most community provided C# drivers). 
- JavaLegacy = 3
- Use the representation used by older versions of the Java driver. 
- PythonLegacy = 4
- Use the representation used by older versions of the Python driver.