C# Class MongoDB.Driver.CollectionOptionsDocument

Represents a BSON document that can be used where an IMongoCollectionOptions is expected.
Inheritance: BsonDocument, IMongoCollectionOptions
Afficher le fichier Open project: Qiredev/mongo-csharp-driver Class Usage Examples

Méthodes publiques

Méthode Description
CollectionOptionsDocument ( ) : System

Initializes a new instance of the CollectionOptionsDocument class.

CollectionOptionsDocument ( BsonElement element ) : System

Initializes a new instance of the CollectionOptionsDocument class and adds one element.

CollectionOptionsDocument ( IDictionary dictionary ) : System

Initializes a new instance of the CollectionOptionsDocument class and adds new elements from a dictionary of key/value pairs.

CollectionOptionsDocument ( IDictionary dictionary, IEnumerable keys ) : System

Initializes a new instance of the CollectionOptionsDocument class and adds new elements from a dictionary of key/value pairs.

CollectionOptionsDocument ( IEnumerable elements ) : System

Initializes a new instance of the CollectionOptionsDocument class and adds new elements from a list of elements.

CollectionOptionsDocument ( bool allowDuplicateNames ) : System

Initializes a new instance of the CollectionOptionsDocument class specifying whether duplicate element names are allowed (allowing duplicate element names is not recommended).

CollectionOptionsDocument ( string name, BsonValue value ) : System

Initializes a new instance of the CollectionOptionsDocument class and creates and adds a new element.

Method Details

CollectionOptionsDocument() public méthode

Initializes a new instance of the CollectionOptionsDocument class.
public CollectionOptionsDocument ( ) : System
Résultat System

CollectionOptionsDocument() public méthode

Initializes a new instance of the CollectionOptionsDocument class and adds one element.
public CollectionOptionsDocument ( BsonElement element ) : System
element BsonElement An element to add to the document.
Résultat System

CollectionOptionsDocument() public méthode

Initializes a new instance of the CollectionOptionsDocument class and adds new elements from a dictionary of key/value pairs.
public CollectionOptionsDocument ( IDictionary dictionary ) : System
dictionary IDictionary A dictionary to initialize the document from.
Résultat System

CollectionOptionsDocument() public méthode

Initializes a new instance of the CollectionOptionsDocument class and adds new elements from a dictionary of key/value pairs.
public CollectionOptionsDocument ( IDictionary dictionary, IEnumerable keys ) : System
dictionary IDictionary A dictionary to initialize the document from.
keys IEnumerable A list of keys to select values from the dictionary.
Résultat System

CollectionOptionsDocument() public méthode

Initializes a new instance of the CollectionOptionsDocument class and adds new elements from a list of elements.
public CollectionOptionsDocument ( IEnumerable elements ) : System
elements IEnumerable A list of elements to add to the document.
Résultat System

CollectionOptionsDocument() public méthode

Initializes a new instance of the CollectionOptionsDocument class specifying whether duplicate element names are allowed (allowing duplicate element names is not recommended).
public CollectionOptionsDocument ( bool allowDuplicateNames ) : System
allowDuplicateNames bool Whether duplicate element names are allowed.
Résultat System

CollectionOptionsDocument() public méthode

Initializes a new instance of the CollectionOptionsDocument class and creates and adds a new element.
public CollectionOptionsDocument ( string name, BsonValue value ) : System
name string The name of the element to add to the document.
value BsonValue The value of the element to add to the document.
Résultat System