| MongoDatabaseBaseCreateCollection Method (IClientSessionHandle, String, CreateCollectionOptions, CancellationToken) | 
 
            Creates the collection with the specified name.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
 Syntax
Syntaxpublic virtual void CreateCollection(
	IClientSessionHandle session,
	string name,
	CreateCollectionOptions options = null,
	CancellationToken cancellationToken = null
)
Public Overridable Sub CreateCollection ( 
	session As IClientSessionHandle,
	name As String,
	Optional options As CreateCollectionOptions = Nothing,
	Optional cancellationToken As CancellationToken = Nothing
)
abstract CreateCollection : 
        session : IClientSessionHandle * 
        name : string * 
        ?options : CreateCollectionOptions * 
        ?cancellationToken : CancellationToken 
(* Defaults:
        let _options = defaultArg options null
        let _cancellationToken = defaultArg cancellationToken null
*)
-> unit 
override CreateCollection : 
        session : IClientSessionHandle * 
        name : string * 
        ?options : CreateCollectionOptions * 
        ?cancellationToken : CancellationToken 
(* Defaults:
        let _options = defaultArg options null
        let _cancellationToken = defaultArg cancellationToken null
*)
-> unit Parameters
- session
- Type: MongoDB.DriverIClientSessionHandle
 The session.
- name
- Type: SystemString
 The name.
- options (Optional)
- Type: MongoDB.DriverCreateCollectionOptions
 The options.
- cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
 The cancellation token.
Implements
IMongoDatabaseCreateCollection(IClientSessionHandle, String, CreateCollectionOptions, CancellationToken) See Also
See Also