Share via


ProvisionedFabricConfigVersionList Class

Definition

Represents the list of provisioned Service Fabric configuration (Cluster Manifest) versions retrieved by calling GetProvisionedFabricConfigVersionListAsync(String).

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

Properties

Count

Gets the number of items in this list.

IsReadOnly

Gets a value that indicates whether the list can be modified only if this property is false.

Item[Int32]

Gets the item at the specified index.

Methods

Add(ProvisionedFabricConfigVersion)

Adds the specified item to this list.

Clear()

Removes all items from this list.

Contains(ProvisionedFabricConfigVersion)

Returns true if the specified item is contained in this list.

CopyTo(ProvisionedFabricConfigVersion[], Int32)

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

GetEnumerator()

Returns an enumerator to the items in this list.

IndexOf(ProvisionedFabricConfigVersion)

Returns the index of the specified item in this list.

Insert(Int32, ProvisionedFabricConfigVersion)

Inserts the specified item into this list at the specified index.

Remove(ProvisionedFabricConfigVersion)

Removes the specified item from this list.

RemoveAt(Int32)

Removes the item from the specified index.

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Gets an enumerator to the 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