CouchbaseBucket.Get<T> Method (String)Couchbase .NET SDK 2.0
Gets a value for a given key.

Namespace: Couchbase
Assembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
public IOperationResult<T> Get<T>(
	string key
)

Parameters

key
Type: System.String
The unique Key to use to lookup the value.
Type Parameters
T
The Type of the value object to be retrieved.

Return Value

Type: IOperationResult<T>
An object implementing the IOperationResult<T>interface.

Implements

IBucket.Get<T>(String)
See Also