NodeList Class

 

Applies To: Azure, Windows 10, Windows 8, Windows 8.1, Windows Server 2012 R2

Represents a list of Service Fabric nodes retrieved by calling GetNodeListAsync.

Namespace:   System.Fabric.Query
Assembly:  System.Fabric (in System.Fabric.dll)

Inheritance Hierarchy

System.Object
  System.Fabric.Query.PagedList<T>
    System.Fabric.Query.NodeList

Syntax

public sealed class NodeList : PagedList<Node>

Constructors

Name Description
System_CAPS_pubmethod NodeList()

Creates an empty node list.

Properties

Name Description
System_CAPS_pubproperty ContinuationToken

The continuation token. Can be used by queries to get next pages of results. (Inherited from PagedList<T>.)

System_CAPS_pubproperty Count

Gets or sets the number of items in the list. (Inherited from PagedList<T>.)

System_CAPS_pubproperty IsReadOnly

Gets or sets a flag that indicated whether the list can be modified. (Inherited from PagedList<T>.)

System_CAPS_pubproperty Item[Int32]

Gets the item at the specified index. (Inherited from PagedList<T>.)

Methods

Name Description
System_CAPS_pubmethod Add(T)

Adds an item to this list. (Inherited from PagedList<T>.)

System_CAPS_pubmethod Clear()

Removes all items from this list. (Inherited from PagedList<T>.)

System_CAPS_pubmethod Contains(T)

Specifies whether the list contains a specific item. (Inherited from PagedList<T>.)

System_CAPS_pubmethod CopyTo(T[], Int32)

Copies items from this list to the specified array starting at the specified index. (Inherited from PagedList<T>.)

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_pubmethod GetEnumerator()

Gets an enumerator to items in this list. (Inherited from PagedList<T>.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod IndexOf(T)

Gets the index in this list for the specified item. (Inherited from PagedList<T>.)

System_CAPS_pubmethod Insert(Int32, T)

Inserts an item into this list at the specified index. (Inherited from PagedList<T>.)

System_CAPS_pubmethod Remove(T)

Removes the specified item from this list. (Inherited from PagedList<T>.)

System_CAPS_pubmethod RemoveAt(Int32)

Removes the item at the specified index from this list. (Inherited from PagedList<T>.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Explicit Interface Implementations

Name Description
System_CAPS_pubinterfaceSystem_CAPS_privmethod IEnumerable.GetEnumerator()

Gets an enumerator to items in this list. (Inherited from PagedList<T>.)

Extension Methods

Name Description
System_CAPS_pubmethod ToArray<Node>()

Returns an array with the items in the paged list. (Defined by PagedListHelper.)

Thread Safety

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

System.Fabric.Query Namespace

Return to top