Gets value for a given key
Namespace: Couchbase.CoreAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
SyntaxIOperationResult<T> Get<T>(
string key
)
IOperationResult<T> Get<T>(
string key
)
Function Get(Of T) (
key As String
) As IOperationResult(Of T)
Function Get(Of T) (
key As String
) As IOperationResult(Of T)
generic<typename T>
IOperationResult<T>^ Get(
String^ key
)
generic<typename T>
IOperationResult<T>^ Get(
String^ key
)
abstract Get :
key : string -> IOperationResult<'T>
abstract Get :
key : string -> IOperationResult<'T>
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