Click or drag to resize
IChannel Interface
Represents a channel (similar to a connection but operates at the level of protocols rather than messages).

Namespace: MongoDB.Driver.Core.Bindings
Assembly: MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.2.0
Syntax
public interface IChannel : IDisposable

The IChannel type exposes the following members.

Methods
  NameDescription
Public methodCommandTResult
Executes a Command protocol.
Public methodCommandAsyncTResult
Executes a Command protocol.
Public methodDelete
Executes a Delete protocol.
Public methodDeleteAsync
Executes a Delete protocol.
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable.)
Public methodGetMoreTDocument
Executes a GetMore protocol.
Public methodGetMoreAsyncTDocument
Executes a GetMore protocol.
Public methodInsertTDocument
Executes an Insert protocol.
Public methodInsertAsyncTDocument
Executes an Insert protocol.
Public methodKillCursors
Executes a KillCursors protocol.
Public methodKillCursorsAsync
Executes a KillCursors protocol.
Public methodQueryTDocument
Executes a Query protocol.
Public methodQueryAsyncTDocument
Executes a Query protocol.
Public methodUpdate
Executes an Update protocol.
Public methodUpdateAsync
Executes an Update protocol.
Top
Properties
  NameDescription
Public propertyConnectionDescription
Gets the connection description.
Top
See Also