FabricClient.QueryClient.GetNodePagedListAsync Method

Definition

Overloads

GetNodePagedListAsync()

Gets the details for all nodes in the cluster or for the specified node. If the nodes do not fit in a page, one page of results is returned as well as a continuation token which can be used to get the next page.

GetNodePagedListAsync(NodeQueryDescription)

Gets the details for all nodes in the cluster or for the specified node. If the nodes do not fit in a page, one page of results is returned as well as a continuation token which can be used to get the next page.

GetNodePagedListAsync(NodeQueryDescription, TimeSpan, CancellationToken)

Gets the details for all nodes in the cluster or for the specified node. If the nodes do not fit in a page, one page of results is returned as well as a continuation token which can be used to get the next page.

GetNodePagedListAsync()

Gets the details for all nodes in the cluster or for the specified node. If the nodes do not fit in a page, one page of results is returned as well as a continuation token which can be used to get the next page.

public System.Threading.Tasks.Task<System.Fabric.Query.NodeList> GetNodePagedListAsync ();
member this.GetNodePagedListAsync : unit -> System.Threading.Tasks.Task<System.Fabric.Query.NodeList>
Public Function GetNodePagedListAsync () As Task(Of NodeList)

Returns

A task that represents the asynchronous operation.

The returned task contains the list of nodes as NodeList.

Exceptions

Applies to

GetNodePagedListAsync(NodeQueryDescription)

Gets the details for all nodes in the cluster or for the specified node. If the nodes do not fit in a page, one page of results is returned as well as a continuation token which can be used to get the next page.

public System.Threading.Tasks.Task<System.Fabric.Query.NodeList> GetNodePagedListAsync (System.Fabric.Description.NodeQueryDescription queryDescription);
member this.GetNodePagedListAsync : System.Fabric.Description.NodeQueryDescription -> System.Threading.Tasks.Task<System.Fabric.Query.NodeList>
Public Function GetNodePagedListAsync (queryDescription As NodeQueryDescription) As Task(Of NodeList)

Parameters

queryDescription
NodeQueryDescription

A NodeQueryDescription object describing which application nodes to return.

Returns

A task that represents the asynchronous operation.

The returned task contains the list of nodes as NodeList.

Exceptions

Applies to

GetNodePagedListAsync(NodeQueryDescription, TimeSpan, CancellationToken)

Gets the details for all nodes in the cluster or for the specified node. If the nodes do not fit in a page, one page of results is returned as well as a continuation token which can be used to get the next page.

public System.Threading.Tasks.Task<System.Fabric.Query.NodeList> GetNodePagedListAsync (System.Fabric.Description.NodeQueryDescription queryDescription, TimeSpan timeout, System.Threading.CancellationToken cancellationToken);
member this.GetNodePagedListAsync : System.Fabric.Description.NodeQueryDescription * TimeSpan * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Fabric.Query.NodeList>
Public Function GetNodePagedListAsync (queryDescription As NodeQueryDescription, timeout As TimeSpan, cancellationToken As CancellationToken) As Task(Of NodeList)

Parameters

queryDescription
NodeQueryDescription

A NodeQueryDescription object describing which application nodes to return.

timeout
TimeSpan

Specifies the duration this operation has to complete before timing out.

cancellationToken
CancellationToken

Propagates notification that operation should be canceled.

Returns

A task that represents the asynchronous operation.

The returned task contains the list of nodes as NodeList.

Exceptions

Applies to