Removes a failed over node from the cluster.
Namespace: Couchbase.ManagementAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic IResult RemoveNode(
string ipAddress
)
public IResult RemoveNode(
string ipAddress
)
Public Function RemoveNode (
ipAddress As String
) As IResult
Public Function RemoveNode (
ipAddress As String
) As IResult
public:
virtual IResult^ RemoveNode(
String^ ipAddress
) sealed
public:
virtual IResult^ RemoveNode(
String^ ipAddress
) sealed
abstract RemoveNode :
ipAddress : string -> IResult
override RemoveNode :
ipAddress : string -> IResult
abstract RemoveNode :
ipAddress : string -> IResult
override RemoveNode :
ipAddress : string -> IResult
Parameters
- ipAddress
- Type: System.String
The IPAddress of the node.
Return Value
Type:
IResultA boolean value indicating the result.
Implements
IClusterManager.RemoveNode(String)
RemarksThe node must have been failed over before removing or else this operation will fail.
See Also