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 Task<IResult> RemoveNodeAsync(
string ipAddress
)
public Task<IResult> RemoveNodeAsync(
string ipAddress
)
Public Function RemoveNodeAsync (
ipAddress As String
) As Task(Of IResult)
Public Function RemoveNodeAsync (
ipAddress As String
) As Task(Of IResult)
public:
virtual Task<IResult^>^ RemoveNodeAsync(
String^ ipAddress
) sealed
public:
virtual Task<IResult^>^ RemoveNodeAsync(
String^ ipAddress
) sealed
abstract RemoveNodeAsync :
ipAddress : string -> Task<IResult>
override RemoveNodeAsync :
ipAddress : string -> Task<IResult>
abstract RemoveNodeAsync :
ipAddress : string -> Task<IResult>
override RemoveNodeAsync :
ipAddress : string -> Task<IResult>
Parameters
- ipAddress
- Type: System.String
The IPAddress of the node.
Return Value
Type:
Task<IResult>A boolean value indicating the result.
Implements
IClusterManager.RemoveNodeAsync(String)
RemarksThe node must have been failed over before removing or else this operation will fail.
See Also