DeployedCodePackageList Class

Definition

Represents this list that can be modified only if this property is false.

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

Properties

Count

Gets or sets a value that indicates the number of items in this list.

IsReadOnly

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

Item[Int32]

Gets the item at the specified index.

Methods

Add(DeployedCodePackage)

Adds the specified item to the list.

Clear()

Removes all items from the list.

Contains(DeployedCodePackage)

Returns true if the specified item is in the list.

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

Gets the index of the specified item in this list.

Insert(Int32, DeployedCodePackage)

Inserts the item at the specified index.

Remove(DeployedCodePackage)

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