CombGuidGeneratorGenerateId Method |
Generates an Id for a document.
Namespace:
MongoDB.Bson.Serialization.IdGenerators
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntax public Object GenerateId(
Object container,
Object document
)
Public Function GenerateId (
container As Object,
document As Object
) As Object
abstract GenerateId :
container : Object *
document : Object -> Object
override GenerateId :
container : Object *
document : Object -> Object
Parameters
- container
- Type: SystemObject
The container of the document (will be a MongoCollection when called from the C# driver). - document
- Type: SystemObject
The document.
Return Value
Type:
ObjectAn Id.
Implements
IIdGeneratorGenerateId(Object, Object)See Also