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

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

Parameters

key
Type: System.String
The key to use as a lookup.
Type Parameters
T
The type T to convert the value to.

Return Value

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