ConfigParameterOverrideList Class

Definition

Specifies a named collection of configuration overrides.

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

Constructors

ConfigParameterOverrideList()

Constructor for ConfigParameterOverrideList

ConfigParameterOverrideList(IList<ConfigParameterOverride>)

Constructor for ConfigParameterOverrideList with parameters.

Properties

Count

Gets or sets the number of items in this list.

IsReadOnly

Gets or sets a flag that indicates whether the list is read only.

Item[Int32]

Gets the item at the specified index.

Methods

Add(ConfigParameterOverride)

Adds the specified item to the list.

Clear()

Removes all items from the list.

Contains(ConfigParameterOverride)

Indicates whether the list contains a specified item.

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

Gets the index of the specified item in this list.

Insert(Int32, ConfigParameterOverride)

Inserts the item at the specified index.

Remove(ConfigParameterOverride)

Remove 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