BsonDocument Class |
Namespace: MongoDB.Bson
The BsonDocument type exposes the following members.
Name | Description | |
---|---|---|
![]() | BsonDocument | Initializes a new instance of the BsonDocument class. |
![]() | BsonDocument(Boolean) | Initializes a new instance of the BsonDocument class specifying whether duplicate element names are allowed (allowing duplicate element names is not recommended). |
![]() | BsonDocument(DictionaryString, Object) | Initializes a new instance of the BsonDocument class and adds new elements from a dictionary of key/value pairs. |
![]() | BsonDocument(IEnumerableKeyValuePairString, Object) | Initializes a new instance of the BsonDocument class and adds new elements from a dictionary of key/value pairs. |
![]() | BsonDocument(IDictionary) | Initializes a new instance of the BsonDocument class and adds new elements from a dictionary of key/value pairs. |
![]() | BsonDocument(BsonElement) | Initializes a new instance of the BsonDocument class and adds one element. |
![]() | BsonDocument(BsonElement) | Obsolete. Initializes a new instance of the BsonDocument class and adds one or more elements. |
![]() | BsonDocument(IEnumerableBsonElement) | Initializes a new instance of the BsonDocument class and adds new elements from a list of elements. |
![]() | BsonDocument(DictionaryString, Object, IEnumerableString) | Obsolete. Initializes a new instance of the BsonDocument class and adds new elements from a dictionary of key/value pairs. |
![]() | BsonDocument(IDictionaryString, Object, IEnumerableString) | Obsolete. Initializes a new instance of the BsonDocument class and adds new elements from a dictionary of key/value pairs. |
![]() | BsonDocument(IDictionary, IEnumerable) | Obsolete. Initializes a new instance of the BsonDocument class and adds new elements from a dictionary of key/value pairs. |
![]() | BsonDocument(String, BsonValue) | Initializes a new instance of the BsonDocument class and creates and adds a new element. |
Name | Description | |
---|---|---|
![]() | Add(DictionaryString, Object) | Obsolete. Adds elements to the document from a dictionary of key/value pairs. |
![]() | Add(IDictionaryString, Object) | Obsolete. Adds elements to the document from a dictionary of key/value pairs. |
![]() | Add(IDictionary) | Obsolete. Adds elements to the document from a dictionary of key/value pairs. |
![]() | Add(BsonElement) | Adds an element to the document. |
![]() | Add(BsonElement) | Obsolete. Adds a list of elements to the document. |
![]() | Add(IEnumerableBsonElement) | Obsolete. Adds a list of elements to the document. |
![]() | Add(DictionaryString, Object, IEnumerableString) | Obsolete. Adds elements to the document from a dictionary of key/value pairs. |
![]() | Add(IDictionaryString, Object, IEnumerableString) | Obsolete. Adds elements to the document from a dictionary of key/value pairs. |
![]() | Add(IDictionary, IEnumerable) | Obsolete. Adds elements to the document from a dictionary of key/value pairs. |
![]() | Add(String, BsonValue) | Creates and adds an element to the document. |
![]() | Add(String, BsonValue, Boolean) | Creates and adds an element to the document, but only if the condition is true. |
![]() | Add(String, FuncBsonValue, Boolean) | Creates and adds an element to the document, but only if the condition is true. If the condition is false the value factory is not called at all. |
![]() | AddRange(DictionaryString, Object) | Adds elements to the document from a dictionary of key/value pairs. |
![]() | AddRange(IEnumerableKeyValuePairString, Object) | Adds elements to the document from a dictionary of key/value pairs. |
![]() | AddRange(IDictionary) | Adds elements to the document from a dictionary of key/value pairs. |
![]() | AddRange(IEnumerableBsonElement) | Adds a list of elements to the document. |
![]() | Clear | Clears the document (removes all elements). |
![]() | Clone | Creates a shallow clone of the document (see also DeepClone). (Overrides BsonValueClone.) |
![]() | CompareTo(BsonDocument) | Compares this document to another document. |
![]() | CompareTo(BsonValue) | Compares the BsonDocument to another BsonValue. (Overrides BsonValueCompareTo(BsonValue).) |
![]() | CompareTypeTo | Compares the type of this BsonValue to the type of another BsonValue. (Inherited from BsonValue.) |
![]() | Contains | Tests whether the document contains an element with the specified name. |
![]() | ContainsValue | Tests whether the document contains an element with the specified value. |
![]() ![]() | Create | Creates a new BsonDocument by mapping an object to a BsonDocument. |
![]() | DeepClone | Creates a deep clone of the document (see also Clone). (Overrides BsonValueDeepClone.) |
![]() | Equals(Object) | Compares this BsonDocument to another object. (Overrides BsonValueEquals(Object).) |
![]() | Equals(BsonDocument) | Compares this document to another document. |
![]() | Equals(BsonValue) | Compares this BsonValue to another BsonValue. (Inherited from BsonValue.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetElement(Int32) | Gets an element of this document. |
![]() | GetElement(String) | Gets an element of this document. |
![]() | GetEnumerator | Gets an enumerator that can be used to enumerate the elements of this document. |
![]() | GetHashCode | Gets the hash code. (Overrides BsonValueGetHashCode.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | GetValue(Int32) | Gets the value of an element. |
![]() | GetValue(String) | Gets the value of an element. |
![]() | GetValue(String, BsonValue) | Gets the value of an element or a default value if the element is not found. |
![]() | IConvertibleGetTypeCodeImplementation | Implementation of the IConvertible GetTypeCode method. (Inherited from BsonValue.) |
![]() | IConvertibleToBooleanImplementation | Implementation of the IConvertible ToBoolean method. (Inherited from BsonValue.) |
![]() | IConvertibleToByteImplementation | Implementation of the IConvertible ToByte method. (Inherited from BsonValue.) |
![]() | IConvertibleToCharImplementation | Implementation of the IConvertible ToChar method. (Inherited from BsonValue.) |
![]() | IConvertibleToDateTimeImplementation | Implementation of the IConvertible ToDateTime method. (Inherited from BsonValue.) |
![]() | IConvertibleToDecimalImplementation | Implementation of the IConvertible ToDecimal method. (Inherited from BsonValue.) |
![]() | IConvertibleToDoubleImplementation | Implementation of the IConvertible ToDouble method. (Inherited from BsonValue.) |
![]() | IConvertibleToInt16Implementation | Implementation of the IConvertible ToInt16 method. (Inherited from BsonValue.) |
![]() | IConvertibleToInt32Implementation | Implementation of the IConvertible ToInt32 method. (Inherited from BsonValue.) |
![]() | IConvertibleToInt64Implementation | Implementation of the IConvertible ToInt64 method. (Inherited from BsonValue.) |
![]() | IConvertibleToSByteImplementation | Implementation of the IConvertible ToSByte method. (Inherited from BsonValue.) |
![]() | IConvertibleToSingleImplementation | Implementation of the IConvertible ToSingle method. (Inherited from BsonValue.) |
![]() | IConvertibleToStringImplementation | Implementation of the IConvertible ToString method. (Inherited from BsonValue.) |
![]() | IConvertibleToUInt16Implementation | Implementation of the IConvertible ToUInt16 method. (Inherited from BsonValue.) |
![]() | IConvertibleToUInt32Implementation | Implementation of the IConvertible ToUInt32 method. (Inherited from BsonValue.) |
![]() | IConvertibleToUInt64Implementation | Implementation of the IConvertible ToUInt64 method. (Inherited from BsonValue.) |
![]() | IndexOfName | Gets the index of an element. |
![]() | InsertAt | Inserts a new element at a specified position. |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Merge(BsonDocument) | Merges another document into this one. Existing elements are not overwritten. |
![]() | Merge(BsonDocument, Boolean) | Merges another document into this one, specifying whether existing elements are overwritten. |
![]() | OperatorEqualsImplementation | Implementation of operator ==. (Inherited from BsonValue.) |
![]() ![]() | Parse | Parses a JSON string and returns a BsonDocument. |
![]() | Remove | Removes an element from this document (if duplicate element names are allowed then all elements with this name will be removed). |
![]() | RemoveAt | Removes an element from this document. |
![]() | RemoveElement | Removes an element from this document. |
![]() | Set(Int32, BsonValue) | Sets the value of an element. |
![]() | Set(String, BsonValue) | Sets the value of an element (an element will be added if no element with this name is found). |
![]() | SetElement(BsonElement) | Sets an element of the document (replaces any existing element with the same name or adds a new element if an element with the same name is not found). |
![]() | SetElement(Int32, BsonElement) | Sets an element of the document (replacing the existing element at that position). |
![]() | ToBoolean | Converts this BsonValue to a Boolean (using the JavaScript definition of truthiness). (Inherited from BsonValue.) |
![]() | ToDecimal | Converts this BsonValue to a Decimal. (Inherited from BsonValue.) |
![]() | ToDecimal128 | Converts this BsonValue to a Decimal128. (Inherited from BsonValue.) |
![]() | ToDictionary | Converts the BsonDocument to a Dictionary<string, object>. |
![]() | ToDouble | Converts this BsonValue to a Double. (Inherited from BsonValue.) |
![]() | ToHashtable | Converts the BsonDocument to a Hashtable. |
![]() | ToInt32 | Converts this BsonValue to an Int32. (Inherited from BsonValue.) |
![]() | ToInt64 | Converts this BsonValue to an Int64. (Inherited from BsonValue.) |
![]() | ToLocalTime | Converts this BsonValue to a DateTime in local time. (Inherited from BsonValue.) |
![]() | ToNullableLocalTime | Converts this BsonValue to a DateTime? in local time. (Inherited from BsonValue.) |
![]() | ToNullableUniversalTime | Converts this BsonValue to a DateTime? in UTC. (Inherited from BsonValue.) |
![]() | ToString | Returns a string representation of the document. (Overrides ObjectToString.) |
![]() | ToUniversalTime | Converts this BsonValue to a DateTime in UTC. (Inherited from BsonValue.) |
![]() | TryGetElement | Tries to get an element of this document. |
![]() | TryGetValue | Tries to get the value of an element of this document. |
![]() ![]() | TryParse | Tries to parse a JSON string and returns a value indicating whether it succeeded or failed. |
Name | Description | |
---|---|---|
![]() ![]() | Equality | Compares two BsonDocument values. |
![]() ![]() | Inequality | Compares two BsonDocument values. |
Name | Description | |
---|---|---|
![]() | ContainsAllBsonElement | Determines whether a sequence contains all of the specified values. (Defined by LinqToMongo.) |
![]() | ContainsAnyBsonElement | Determines whether a sequence contains any of the specified values. (Defined by LinqToMongo.) |
![]() | StandardDeviationPopulationBsonElement(FuncBsonElement, Int32) | Overloaded. Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulationBsonElement(FuncBsonElement, NullableInt32) | Overloaded. Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulationBsonElement(FuncBsonElement, Int64) | Overloaded. Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulationBsonElement(FuncBsonElement, NullableInt64) | Overloaded. Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulationBsonElement(FuncBsonElement, Single) | Overloaded. Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulationBsonElement(FuncBsonElement, NullableSingle) | Overloaded. Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulationBsonElement(FuncBsonElement, Double) | Overloaded. Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulationBsonElement(FuncBsonElement, NullableDouble) | Overloaded. Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulationBsonElement(FuncBsonElement, Decimal) | Overloaded. Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulationBsonElement(FuncBsonElement, NullableDecimal) | Overloaded. Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationSampleBsonElement(FuncBsonElement, Int32) | Overloaded. Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationSampleBsonElement(FuncBsonElement, NullableInt32) | Overloaded. Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationSampleBsonElement(FuncBsonElement, Int64) | Overloaded. Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationSampleBsonElement(FuncBsonElement, NullableInt64) | Overloaded. Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationSampleBsonElement(FuncBsonElement, Single) | Overloaded. Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationSampleBsonElement(FuncBsonElement, NullableSingle) | Overloaded. Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationSampleBsonElement(FuncBsonElement, Double) | Overloaded. Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationSampleBsonElement(FuncBsonElement, NullableDouble) | Overloaded. Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationSampleBsonElement(FuncBsonElement, Decimal) | Overloaded. Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | StandardDeviationSampleBsonElement(FuncBsonElement, NullableDecimal) | Overloaded. Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. (Defined by MongoEnumerable.) |
![]() | ToBson | Serializes an object to a BSON byte array. (Defined by BsonExtensionMethods.) |
![]() | ToBsonDocument | Serializes an object to a BsonDocument. (Defined by BsonExtensionMethods.) |
![]() | ToJson | Serializes an object to a JSON string. (Defined by BsonExtensionMethods.) |
Name | Description | |
---|---|---|
![]() | AllowDuplicateNames | Gets or sets whether to allow duplicate names (allowing duplicate names is not recommended). |
![]() | AsBoolean | Casts the BsonValue to a Boolean (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonArray | Casts the BsonValue to a BsonArray (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonBinaryData | Casts the BsonValue to a BsonBinaryData (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonDateTime | Casts the BsonValue to a BsonDateTime (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonDocument | Casts the BsonValue to a BsonDocument (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonJavaScript | Casts the BsonValue to a BsonJavaScript (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonJavaScriptWithScope | Casts the BsonValue to a BsonJavaScriptWithScope (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonMaxKey | Casts the BsonValue to a BsonMaxKey (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonMinKey | Casts the BsonValue to a BsonMinKey (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonNull | Casts the BsonValue to a BsonNull (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonRegularExpression | Casts the BsonValue to a BsonRegularExpression (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonSymbol | Casts the BsonValue to a BsonSymbol (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonTimestamp | Casts the BsonValue to a BsonTimestamp (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonUndefined | Casts the BsonValue to a BsonUndefined (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsBsonValue | Casts the BsonValue to a BsonValue (a way of upcasting subclasses of BsonValue to BsonValue at compile time). (Inherited from BsonValue.) |
![]() | AsByteArray | Casts the BsonValue to a Byte[] (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsDateTime | Obsolete. Casts the BsonValue to a DateTime in UTC (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsDecimal | Casts the BsonValue to a Decimal (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsDecimal128 | Casts the BsonValue to a Decimal128 (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsDouble | Casts the BsonValue to a Double (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsGuid | Casts the BsonValue to a Guid (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsInt32 | Casts the BsonValue to an Int32 (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsInt64 | Casts the BsonValue to a Int64 (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsLocalTime | Obsolete. Casts the BsonValue to a DateTime in the local timezone (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsNullableBoolean | Casts the BsonValue to a Nullable{Boolean} (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsNullableDateTime | Obsolete. Casts the BsonValue to a Nullable{DateTime} (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsNullableDecimal | Casts the BsonValue to a Nullable{Decimal} (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsNullableDecimal128 | Casts the BsonValue to a Nullable{Decimal128} (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsNullableDouble | Casts the BsonValue to a Nullable{Double} (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsNullableGuid | Casts the BsonValue to a Nullable{Guid} (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsNullableInt32 | Casts the BsonValue to a Nullable{Int32} (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsNullableInt64 | Casts the BsonValue to a Nullable{Int64} (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsNullableObjectId | Casts the BsonValue to a Nullable{ObjectId} (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsObjectId | Casts the BsonValue to an ObjectId (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsRegex | Casts the BsonValue to a Regex (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsString | Casts the BsonValue to a String (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | AsUniversalTime | Obsolete. Casts the BsonValue to a DateTime in UTC (throws an InvalidCastException if the cast is not valid). (Inherited from BsonValue.) |
![]() | BsonType | Gets the BsonType of this BsonValue. (Overrides BsonValueBsonType.) |
![]() | ElementCount | Gets the number of elements. |
![]() | Elements | Gets the elements. |
![]() | IsBoolean | Tests whether this BsonValue is a Boolean. (Inherited from BsonValue.) |
![]() | IsBsonArray | Tests whether this BsonValue is a BsonArray. (Inherited from BsonValue.) |
![]() | IsBsonBinaryData | Tests whether this BsonValue is a BsonBinaryData. (Inherited from BsonValue.) |
![]() | IsBsonDateTime | Tests whether this BsonValue is a BsonDateTime. (Inherited from BsonValue.) |
![]() | IsBsonDocument | Tests whether this BsonValue is a BsonDocument. (Inherited from BsonValue.) |
![]() | IsBsonJavaScript | Tests whether this BsonValue is a BsonJavaScript. (Inherited from BsonValue.) |
![]() | IsBsonJavaScriptWithScope | Tests whether this BsonValue is a BsonJavaScriptWithScope. (Inherited from BsonValue.) |
![]() | IsBsonMaxKey | Tests whether this BsonValue is a BsonMaxKey. (Inherited from BsonValue.) |
![]() | IsBsonMinKey | Tests whether this BsonValue is a BsonMinKey. (Inherited from BsonValue.) |
![]() | IsBsonNull | Tests whether this BsonValue is a BsonNull. (Inherited from BsonValue.) |
![]() | IsBsonRegularExpression | Tests whether this BsonValue is a BsonRegularExpression. (Inherited from BsonValue.) |
![]() | IsBsonSymbol | Tests whether this BsonValue is a BsonSymbol . (Inherited from BsonValue.) |
![]() | IsBsonTimestamp | Tests whether this BsonValue is a BsonTimestamp. (Inherited from BsonValue.) |
![]() | IsBsonUndefined | Tests whether this BsonValue is a BsonUndefined. (Inherited from BsonValue.) |
![]() | IsDateTime | Obsolete. Tests whether this BsonValue is a DateTime. (Inherited from BsonValue.) |
![]() | IsDecimal128 | Tests whether this BsonValue is a Decimal128. (Inherited from BsonValue.) |
![]() | IsDouble | Tests whether this BsonValue is a Double. (Inherited from BsonValue.) |
![]() | IsGuid | Tests whether this BsonValue is a Guid. (Inherited from BsonValue.) |
![]() | IsInt32 | Tests whether this BsonValue is an Int32. (Inherited from BsonValue.) |
![]() | IsInt64 | Tests whether this BsonValue is an Int64. (Inherited from BsonValue.) |
![]() | IsNumeric | Tests whether this BsonValue is a numeric value. (Inherited from BsonValue.) |
![]() | IsObjectId | Tests whether this BsonValue is an ObjectId . (Inherited from BsonValue.) |
![]() | IsString | Tests whether this BsonValue is a String. (Inherited from BsonValue.) |
![]() | IsValidDateTime | Tests whether this BsonValue is a valid DateTime. (Inherited from BsonValue.) |
![]() | ItemInt32 | Gets or sets a value by position. (Overrides BsonValueItemInt32.) |
![]() | ItemString | Gets or sets a value by name. (Overrides BsonValueItemString.) |
![]() | ItemString, BsonValue | Obsolete. Gets the value of an element or a default value if the element is not found. |
![]() | Names | Gets the element names. |
![]() | RawValue | Obsolete. Gets the raw value of this BsonValue (or null if this BsonValue doesn't have a single scalar value). (Inherited from BsonValue.) |
![]() | RawValues | Obsolete. Gets the raw values (see BsonValue.RawValue). |
![]() | Values | Gets the values. |