Asynchronously removes a document for a given key from the database as an asynchronous operation.
Namespace: CouchbaseAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 0.0.0.0 (0.0.0.0)
Syntaxpublic Task<IOperationResult> RemoveAsync(
string key
)
public Task<IOperationResult> RemoveAsync(
string key
)
Public Function RemoveAsync (
key As String
) As Task(Of IOperationResult)
Public Function RemoveAsync (
key As String
) As Task(Of IOperationResult)
public:
virtual Task<IOperationResult^>^ RemoveAsync(
String^ key
) sealed
public:
virtual Task<IOperationResult^>^ RemoveAsync(
String^ key
) sealed
abstract RemoveAsync :
key : string -> Task<IOperationResult>
override RemoveAsync :
key : string -> Task<IOperationResult>
abstract RemoveAsync :
key : string -> Task<IOperationResult>
override RemoveAsync :
key : string -> Task<IOperationResult>
Parameters
- key
- Type: System.String
The key to remove from the database
Return Value
Type:
Task<IOperationResult>
The
Task<TResult> object representing the asynchronous operation.
Implements
IBucket.RemoveAsync(String)
See Also