Checks for the existance of a given key.
Namespace: CouchbaseAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 0.0.0.0 (0.0.0.0)
Syntaxpublic bool Exists(
string key
)
public bool Exists(
string key
)
Public Function Exists (
key As String
) As Boolean
Public Function Exists (
key As String
) As Boolean
public:
virtual bool Exists(
String^ key
) sealed
public:
virtual bool Exists(
String^ key
) sealed
abstract Exists :
key : string -> bool
override Exists :
key : string -> bool
abstract Exists :
key : string -> bool
override Exists :
key : string -> bool
Parameters
- key
- Type: System.String
The key to check.
Return Value
Type:
BooleanTrue if the key exists.
Implements
IBucket.Exists(String)
See Also