Constructor IndexKeysDocument
IndexKeysDocument()
Initializes a new instance of the IndexKeysDocument class.
public IndexKeysDocument()
IndexKeysDocument(bool)
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)
Parameters
allowDuplicateNames
boolWhether duplicate element names are allowed.
IndexKeysDocument(BsonElement)
Initializes a new instance of the IndexKeysDocument class and adds one element.
public IndexKeysDocument(BsonElement element)
Parameters
element
BsonElementAn element to add to the document.
IndexKeysDocument(Dictionary<string, object>)
Initializes a new instance of the IndexKeysDocument class and adds new elements from a dictionary of key/value pairs.
public IndexKeysDocument(Dictionary<string, object> dictionary)
Parameters
dictionary
Dictionary<string, object>A dictionary to initialize the document from.
IndexKeysDocument(Dictionary<string, object>, IEnumerable<string>)
Initializes a new instance of the IndexKeysDocument class and adds new elements from a dictionary of key/value pairs.
[Obsolete("Use IndexKeysDocument<IEnumerable<BsonElement> elements) instead.")]
public IndexKeysDocument(Dictionary<string, object> dictionary, IEnumerable<string> keys)
Parameters
dictionary
Dictionary<string, object>A dictionary to initialize the document from.
keys
IEnumerable<string>A list of keys to select values from the dictionary.
IndexKeysDocument(IEnumerable<KeyValuePair<string, object>>)
Initializes a new instance of the IndexKeysDocument class and adds new elements from a dictionary of key/value pairs.
public IndexKeysDocument(IEnumerable<KeyValuePair<string, object>> dictionary)
Parameters
dictionary
IEnumerable<KeyValuePair<string, object>>A dictionary to initialize the document from.
IndexKeysDocument(IDictionary<string, object>, IEnumerable<string>)
Initializes a new instance of the IndexKeysDocument class and adds new elements from a dictionary of key/value pairs.
[Obsolete("Use IndexKeysDocument<IEnumerable<BsonElement> elements) instead.")]
public IndexKeysDocument(IDictionary<string, object> dictionary, IEnumerable<string> keys)
Parameters
dictionary
IDictionary<string, object>A dictionary to initialize the document from.
keys
IEnumerable<string>A list of keys to select values from the dictionary.
IndexKeysDocument(IDictionary)
Initializes a new instance of the IndexKeysDocument class and adds new elements from a dictionary of key/value pairs.
public IndexKeysDocument(IDictionary dictionary)
Parameters
dictionary
IDictionaryA dictionary to initialize the document from.
IndexKeysDocument(IDictionary, IEnumerable)
Initializes a new instance of the IndexKeysDocument class and adds new elements from a dictionary of key/value pairs.
[Obsolete("Use IndexKeysDocument<IEnumerable<BsonElement> elements) instead.")]
public IndexKeysDocument(IDictionary dictionary, IEnumerable keys)
Parameters
dictionary
IDictionaryA dictionary to initialize the document from.
keys
IEnumerableA list of keys to select values from the dictionary.
IndexKeysDocument(IEnumerable<BsonElement>)
Initializes a new instance of the IndexKeysDocument class and adds new elements from a list of elements.
public IndexKeysDocument(IEnumerable<BsonElement> elements)
Parameters
elements
IEnumerable<BsonElement>A list of elements to add to the document.
IndexKeysDocument(params BsonElement[])
Initializes a new instance of the IndexKeysDocument class and adds one or more elements.
[Obsolete("Use IndexKeysDocument<IEnumerable<BsonElement> elements) instead.")]
public IndexKeysDocument(params BsonElement[] elements)
Parameters
elements
BsonElement[]One or more elements to add to the document.
IndexKeysDocument(string, BsonValue)
Initializes a new instance of the IndexKeysDocument class and creates and adds a new element.
public IndexKeysDocument(string name, BsonValue value)