QueryType Method (String, BsonType) |
Tests that the type of the named element is equal to some type (see $type).
Namespace: MongoDB.Driver.BuildersAssembly: MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.4.1
Syntaxpublic static IMongoQuery Type(
string name,
BsonType type
)
Public Shared Function Type (
name As String,
type As BsonType
) As IMongoQuery
static member Type :
name : string *
type : BsonType -> IMongoQuery
Parameters
- name
- Type: SystemString
The name of the element to test. - type
- Type: MongoDB.BsonBsonType
The type to compare to.
Return Value
Type:
IMongoQueryAn IMongoQuery.
See Also