C# Class MongoDB.Driver.IndexKeysDocument

Represents a BSON document that can be used where an IMongoIndexKeys is expected.
Inheritance: BsonDocument, IMongoIndexKeys
显示文件 Open project: Qiredev/mongo-csharp-driver Class Usage Examples

Public Methods

Method Description
IndexKeysDocument ( ) : System

Initializes a new instance of the IndexKeysDocument class.

IndexKeysDocument ( BsonElement element ) : System

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

IndexKeysDocument ( IDictionary dictionary ) : System

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

IndexKeysDocument ( IDictionary dictionary, IEnumerable keys ) : System

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

IndexKeysDocument ( IEnumerable elements ) : System

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

IndexKeysDocument ( bool allowDuplicateNames ) : System

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

IndexKeysDocument ( string name, BsonValue value ) : System

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

Method Details

IndexKeysDocument() public method

Initializes a new instance of the IndexKeysDocument class.
public IndexKeysDocument ( ) : System
return System

IndexKeysDocument() public method

Initializes a new instance of the IndexKeysDocument class and adds one element.
public IndexKeysDocument ( BsonElement element ) : System
element BsonElement An element to add to the document.
return System

IndexKeysDocument() public method

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

IndexKeysDocument() public method

Initializes a new instance of the IndexKeysDocument class and adds new elements from a dictionary of key/value pairs.
public IndexKeysDocument ( 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.
return System

IndexKeysDocument() public method

Initializes a new instance of the IndexKeysDocument class and adds new elements from a list of elements.
public IndexKeysDocument ( IEnumerable elements ) : System
elements IEnumerable A list of elements to add to the document.
return System

IndexKeysDocument() public method

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

IndexKeysDocument() public method

Initializes a new instance of the IndexKeysDocument class and creates and adds a new element.
public IndexKeysDocument ( 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.
return System