DeployedServicePackageList Class

Definition

Represents a list of DeployedServicePackage.

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

Properties

Count

Gets the number of items in this list

IsReadOnly

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

Item[Int32]

Gets the item at the specified index

Methods

Add(DeployedServicePackage)

Adds the specified item to the list.

Clear()

Removes all items from the list.

Contains(DeployedServicePackage)

Indicates whether the specified item is in the list.

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

Gets the index of the specified item in this list

Insert(Int32, DeployedServicePackage)

Inserts the item at the specified index.

Remove(DeployedServicePackage)

Removes 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