MongoDbCursorMethodsProperties Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
MongoDbCursorMethodsProperties() |
Initializes a new instance of the MongoDbCursorMethodsProperties class. |
MongoDbCursorMethodsProperties(IDictionary<String,Object>, Object, Object, Object, Object) |
Initializes a new instance of the MongoDbCursorMethodsProperties class. |
MongoDbCursorMethodsProperties()
Initializes a new instance of the MongoDbCursorMethodsProperties class.
public MongoDbCursorMethodsProperties ();
Public Sub New ()
Applies to
MongoDbCursorMethodsProperties(IDictionary<String,Object>, Object, Object, Object, Object)
Initializes a new instance of the MongoDbCursorMethodsProperties class.
public MongoDbCursorMethodsProperties (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, object project = default, object sort = default, object skip = default, object limit = default);
new Microsoft.Azure.Management.DataFactory.Models.MongoDbCursorMethodsProperties : System.Collections.Generic.IDictionary<string, obj> * obj * obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.MongoDbCursorMethodsProperties
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional project As Object = Nothing, Optional sort As Object = Nothing, Optional skip As Object = Nothing, Optional limit As Object = Nothing)
Parameters
- additionalProperties
- IDictionary<String,Object>
Unmatched properties from the message are deserialized this collection
- project
- Object
Specifies the fields to return in the documents that match the query filter. To return all fields in the matching documents, omit this parameter. Type: string (or Expression with resultType string).
- sort
- Object
Specifies the order in which the query returns matching documents. Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).
- skip
- Object
Specifies the how many documents skipped and where MongoDB begins returning results. This approach may be useful in implementing paginated results. Type: integer (or Expression with resultType integer).
- limit
- Object
Specifies the maximum number of documents the server returns. limit() is analogous to the LIMIT statement in a SQL database. Type: integer (or Expression with resultType integer).
Applies to
Azure SDK for .NET