IMongoDatabaseCreateViewAsyncTDocument, TResult Method (String, String, PipelineDefinitionTDocument, TResult, CreateViewOptionsTDocument, CancellationToken) | 
 
            Creates a view.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
SyntaxTask CreateViewAsync<TDocument, TResult>(
	string viewName,
	string viewOn,
	PipelineDefinition<TDocument, TResult> pipeline,
	CreateViewOptions<TDocument> options = null,
	CancellationToken cancellationToken = default
)
Function CreateViewAsync(Of TDocument, TResult) ( 
	viewName As String,
	viewOn As String,
	pipeline As PipelineDefinition(Of TDocument, TResult),
	Optional options As CreateViewOptions(Of TDocument) = Nothing,
	Optional cancellationToken As CancellationToken = Nothing
) As Task
abstract CreateViewAsync : 
        viewName : string * 
        viewOn : string * 
        pipeline : PipelineDefinition<'TDocument, 'TResult> * 
        ?options : CreateViewOptions<'TDocument> * 
        ?cancellationToken : CancellationToken 
(* Defaults:
        let _options = defaultArg options null
        let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task 
Parameters
- viewName
 - Type: SystemString
The name of the view. - viewOn
 - Type: SystemString
The name of the collection that the view is on. - pipeline
 - Type: MongoDB.DriverPipelineDefinitionTDocument, TResult
The pipeline. - options (Optional)
 - Type: MongoDB.DriverCreateViewOptionsTDocument
The options. - cancellationToken (Optional)
 - Type: System.ThreadingCancellationToken
The cancellation token. 
Type Parameters
- TDocument
 - The type of the input documents.
 - TResult
 - The type of the pipeline result documents.
 
Return Value
Type: 
TaskA task.
See Also