Returns a response indicating whether or not the
IBucket instance has been opened and this
Cluster instance is observing it.
Namespace: CouchbaseAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic bool IsOpen(
string bucketName
)
public bool IsOpen(
string bucketName
)
Public Function IsOpen (
bucketName As String
) As Boolean
Public Function IsOpen (
bucketName As String
) As Boolean
public:
virtual bool IsOpen(
String^ bucketName
) sealed
public:
virtual bool IsOpen(
String^ bucketName
) sealed
abstract IsOpen :
bucketName : string -> bool
override IsOpen :
bucketName : string -> bool
abstract IsOpen :
bucketName : string -> bool
override IsOpen :
bucketName : string -> bool
Parameters
- bucketName
- Type: System.String
The name of the bucket to check.
Return Value
Type:
BooleanTrue if the
IBucket has been opened and the cluster is registered as an observer.
Implements
ICluster.IsOpen(String)
See Also