DeployedApplicationList Class

Definition

Represents the list of DeployedApplication objects.

public sealed class DeployedApplicationList : System.Collections.Generic.ICollection<System.Fabric.Query.DeployedApplication>, System.Collections.Generic.IEnumerable<System.Fabric.Query.DeployedApplication>, System.Collections.Generic.IList<System.Fabric.Query.DeployedApplication>
type DeployedApplicationList = class
    interface IList<DeployedApplication>
    interface ICollection<DeployedApplication>
    interface seq<DeployedApplication>
    interface IEnumerable
Public NotInheritable Class DeployedApplicationList
Implements ICollection(Of DeployedApplication), IEnumerable(Of DeployedApplication), IList(Of DeployedApplication)
Inheritance
DeployedApplicationList
Implements

Properties

Count

Gets or sets the number of items in this list.

IsReadOnly

Gets or sets a flag that indicates whether the list can be modified.

Item[Int32]

Gets the item at the specified index.

Methods

Add(DeployedApplication)

Adds the specified item to the list

Clear()

Removes all items from the list

Contains(DeployedApplication)

Indicates a flag that specifies whether the list contains a specific item.

CopyTo(DeployedApplication[], Int32)

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

GetEnumerator()

Gets an enumerator to items in this list.

IndexOf(DeployedApplication)

Gets the index of the specified item in this list.

Insert(Int32, DeployedApplication)

Inserts the item at the specified index.

Remove(DeployedApplication)

Remove the specified item from this list

RemoveAt(Int32)

Removes the item at the specified index

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Gets an enumerator for items in this list.

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.

Applies to