ComposeDeploymentStatusList Class

Definition

Represents the list of ComposeDeploymentStatusResultItem retrieved by calling System.Fabric.FabricClient.QueryClient.GetComposeDeploymentStatusPagedListAsync(Microsoft.ServiceFabric.Preview.Client.Description.ComposeDeploymentStatusQueryDescription).

public sealed class ComposeDeploymentStatusList : System.Fabric.Query.PagedList<Microsoft.ServiceFabric.Preview.Client.Query.ComposeDeploymentStatusResultItem>
type ComposeDeploymentStatusList = class
    inherit PagedList<ComposeDeploymentStatusResultItem>
Public NotInheritable Class ComposeDeploymentStatusList
Inherits PagedList(Of ComposeDeploymentStatusResultItem)
Inheritance
ComposeDeploymentStatusList

Constructors

ComposeDeploymentStatusList()

Creates a docker compose deployment list.

Properties

ContinuationToken

The continuation token. Can be used by queries to get next pages of results.

(Inherited from PagedList<T>)
Count

Gets the number of items in the list.

(Inherited from PagedList<T>)
IsReadOnly

Gets a flag that indicated whether the list can be modified.

(Inherited from PagedList<T>)
Item[Int32]

Gets the item at the specified index.

(Inherited from PagedList<T>)

Methods

Add(T)

Adds an item to this list.

(Inherited from PagedList<T>)
Clear()

Removes all items from this list.

(Inherited from PagedList<T>)
Contains(T)

Specifies whether the list contains a specific item.

(Inherited from PagedList<T>)
CopyTo(T[], Int32)

Copies items from this list to the specified array starting at the specified index.

(Inherited from PagedList<T>)
GetEnumerator()

Gets an enumerator to items in this list.

(Inherited from PagedList<T>)
IndexOf(T)

Gets the index in this list for the specified item.

(Inherited from PagedList<T>)
Insert(Int32, T)

Inserts an item into this list at the specified index.

(Inherited from PagedList<T>)
Items() (Inherited from PagedList<T>)
Remove(T)

Removes the specified item from this list.

(Inherited from PagedList<T>)
RemoveAt(Int32)

Removes the item at the specified index from this list.

(Inherited from PagedList<T>)

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Gets an enumerator to items in this list.

(Inherited from PagedList<T>)

Extension Methods

ToCommaSeparatedString<T>(IEnumerable<T>)

Converts the elements of a collection to strings and concatenates them into a comma-separated list, or returns null for null or empty collections.

ToArray<T>(PagedList<T>)

Returns an array with the items in the paged list.

Applies to