C# Класс Castle.Core.Configuration.ConfigurationCollection

Наследование: System.Collections.ReadOnlyCollectionBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Add ( IConfiguration value ) : IConfiguration

Adds an IConfiguration.

AddRange ( ConfigurationCollection value ) : void

Adds a ConfigurationCollection.

AddRange ( IConfiguration value ) : void

Adds an array of IConfiguration.

ConfigurationCollection ( ) : System

Creates a new instance of ConfigurationCollection.

ConfigurationCollection ( ConfigurationCollection value ) : System

Creates a new instance of ConfigurationCollection.

ConfigurationCollection ( IConfiguration value ) : System

Creates a new instance of ConfigurationCollection.

Contains ( IConfiguration value ) : bool

Gets a value indicating whether the IConfiguration contains in the collection.

CopyTo ( IConfiguration array, int index ) : void

Copies the elements to a one-dimensional Array instance at the specified index.

Remove ( IConfiguration value ) : void

Removes a specific IConfiguration from the collection.

this ( String name ) : IConfiguration
this ( int index ) : IConfiguration

Represents the entry at the specified index of the IConfiguration.

Описание методов

Add() публичный Метод

Adds an IConfiguration.
public Add ( IConfiguration value ) : IConfiguration
value IConfiguration The to add.
Результат IConfiguration

AddRange() публичный Метод

Adds a ConfigurationCollection.
public AddRange ( ConfigurationCollection value ) : void
value ConfigurationCollection The to add.
Результат void

AddRange() публичный Метод

Adds an array of IConfiguration.
public AddRange ( IConfiguration value ) : void
value IConfiguration The Array of to add.
Результат void

ConfigurationCollection() публичный Метод

Creates a new instance of ConfigurationCollection.
public ConfigurationCollection ( ) : System
Результат System

ConfigurationCollection() публичный Метод

Creates a new instance of ConfigurationCollection.
public ConfigurationCollection ( ConfigurationCollection value ) : System
value ConfigurationCollection
Результат System

ConfigurationCollection() публичный Метод

Creates a new instance of ConfigurationCollection.
public ConfigurationCollection ( IConfiguration value ) : System
value IConfiguration
Результат System

Contains() публичный Метод

Gets a value indicating whether the IConfiguration contains in the collection.
public Contains ( IConfiguration value ) : bool
value IConfiguration The to locate.
Результат bool

CopyTo() публичный Метод

Copies the elements to a one-dimensional Array instance at the specified index.
public CopyTo ( IConfiguration array, int index ) : void
array IConfiguration /// The one-dimensional must have zero-based indexing. ///
index int The zero-based index in array at which copying begins.
Результат void

Remove() публичный Метод

Removes a specific IConfiguration from the collection.
/// is not found in the collection. ///
public Remove ( IConfiguration value ) : void
value IConfiguration The to remove from the collection.
Результат void

this() публичный Метод

public this ( String name ) : IConfiguration
name String
Результат IConfiguration

this() публичный Метод

Represents the entry at the specified index of the IConfiguration.
/// is outside the valid range of indexes for the collection. ///
public this ( int index ) : IConfiguration
index int /// The zero-based index of the entry to locate in the collection. ///
Результат IConfiguration