CouchbaseBucket.RemoveAsync<T> Method (IDocument<T>)Couchbase .NET SDK 2.3.3
Removes a document from the database as an asynchronous operation.

Namespace: Couchbase
Assembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 0.0.0.0 (0.0.0.0)
Syntax
public Task<IOperationResult> RemoveAsync<T>(
	IDocument<T> document
)

Parameters

document
Type: Couchbase.IDocument<T>
The IDocument<T> to remove from the database.
Type Parameters
T
The type T of the object.

Return Value

Type: Task<IOperationResult>
The Task<TResult> object representing the asynchronous operation.

Implements

IBucket.RemoveAsync<T>(IDocument<T>)
See Also