DeployedApplicationHealthStateList Class

Definition

Represents a collection of DeployedApplicationHealthState that can be individually accessed by index.

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

Properties

Count

Gets the number of elements in the collection.

IsReadOnly

Gets a value indicating whether the list is read-only.

Item[Int32]

Gets or sets the element at the specified index.

Methods

Add(DeployedApplicationHealthState)

Adds an item to the collection.

Clear()

Removes all items from the collection.

Contains(DeployedApplicationHealthState)

Determines whether the collection contains a specific value.

CopyTo(DeployedApplicationHealthState[], Int32)

Copies the elements of the ICollection to an Array, starting at a particular Array index.

GetEnumerator()

Returns an enumerator that iterates through a collection.

IndexOf(DeployedApplicationHealthState)

Determines the index of a specific item in the collection.

Insert(Int32, DeployedApplicationHealthState)

Inserts an item at the specified index.

Remove(DeployedApplicationHealthState)

Removes the first occurrence of a specific item from the collection.

RemoveAt(Int32)

Removes the item at the specified index.

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through a collection.

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