ApplicationTypeList Class

Definition

Represents the list of the ApplicationType retrieved by calling GetApplicationTypeListAsync(String).

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

Properties

Count

Gets the number of items in this list.

IsReadOnly

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

Item[Int32]

Gets the item at the specified index.

Methods

Add(ApplicationType)

Adds an item to this list.

Clear()

Removes all items from this list.

Contains(ApplicationType)

Returns true if the specified item is in the list.

CopyTo(ApplicationType[], Int32)

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

GetEnumerator()

Returns an enumerator to items in this list.

IndexOf(ApplicationType)

Returns the index of the specified item in this list.

Insert(Int32, ApplicationType)

Inserts an item into this list at the specified index.

Remove(ApplicationType)

Removes the specified item from the list.

RemoveAt(Int32)

Removes the item at the specified index from the list.

Explicit Interface Implementations

IEnumerable.GetEnumerator()

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