Share via


ApplicationHealthStateList Class

Definition

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

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

Properties

Count

Gets the number of elements.

IsReadOnly

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

Item[Int32]

Gets or sets the element at the specified index.

Methods

Add(ApplicationHealthState)

Adds an item to the collection.

Clear()

Removes all items from the collection.

Contains(ApplicationHealthState)

Determines whether the collection contains a specific value.

CopyTo(ApplicationHealthState[], 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(ApplicationHealthState)

Determines the index of a specific item in the collection.

Insert(Int32, ApplicationHealthState)

Inserts an item at the specified index.

Remove(ApplicationHealthState)

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