CouchbaseBucket.GetFromReplicaAsync<T> Method Couchbase .NET SDK 2.3.3
Gets a value for a key by checking each replica asynchronously.

Namespace: Couchbase
Assembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 0.0.0.0 (0.0.0.0)
Syntax
public Task<IOperationResult<T>> GetFromReplicaAsync<T>(
	string key
)

Parameters

key
Type: System.String
The key of the value to retrieve.
Type Parameters
T
The Type of the value being retrieved.

Return Value

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

Implements

IBucket.GetFromReplicaAsync<T>(String)
See Also