CreateViewOperation Constructor  | 
  
    Namespace: 
   MongoDB.Driver.Core.Operations
    Assembly:
   MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntaxpublic CreateViewOperation(
	DatabaseNamespace databaseNamespace,
	string viewName,
	string viewOn,
	IEnumerable<BsonDocument> pipeline,
	MessageEncoderSettings messageEncoderSettings
)
Public Sub New ( 
	databaseNamespace As DatabaseNamespace,
	viewName As String,
	viewOn As String,
	pipeline As IEnumerable(Of BsonDocument),
	messageEncoderSettings As MessageEncoderSettings
)
new : 
        databaseNamespace : DatabaseNamespace * 
        viewName : string * 
        viewOn : string * 
        pipeline : IEnumerable<BsonDocument> * 
        messageEncoderSettings : MessageEncoderSettings -> CreateViewOperationParameters
- databaseNamespace
 - Type: MongoDB.DriverDatabaseNamespace
The name of the database. - viewName
 - Type: SystemString
The name of the view. - viewOn
 - Type: SystemString
The name of the collection that the view is on. - pipeline
 - Type: System.Collections.GenericIEnumerableBsonDocument
The pipeline. - messageEncoderSettings
 - Type: MongoDB.Driver.Core.WireProtocol.Messages.EncodersMessageEncoderSettings
The message encoder settings. 
See Also