DuplicateNameHandling Enumeration |
Represents how duplicate names should be handled.
Namespace:
MongoDB.Bson
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax public enum DuplicateNameHandling
Public Enumeration DuplicateNameHandling
type DuplicateNameHandling
Members
| Member name | Value | Description |
---|
| Overwrite | 0 |
Overwrite original value with new value.
|
| Ignore | 1 |
Ignore duplicate name and keep original value.
|
| ThrowException | 2 |
Throw an exception.
|
See Also