C# Class CustomConfigurations.ValueItemElementCollection

Object to hold a list of valueItemElements
Inheritance: System.Configuration.ConfigurationElementCollection
ファイルを表示 Open project: twistedtwig/CustomConfigurations

Public Methods

Method Description
Add ( ValueItemElement item ) : void
IsReadOnly ( ) : bool
Remove ( string key ) : void
RemoveAt ( int index ) : void
this ( int index ) : ValueItemElement
this ( string key ) : ValueItemElement

Protected Methods

Method Description
CreateNewElement ( ) : ConfigurationElement

When overridden in a derived class, creates a new T:System.Configuration.ConfigurationElement.

GetElementKey ( ConfigurationElement element ) : object

Gets the element key for a specified configuration element when overridden in a derived class.

Method Details

Add() public method

public Add ( ValueItemElement item ) : void
item ValueItemElement
return void

CreateNewElement() protected method

When overridden in a derived class, creates a new T:System.Configuration.ConfigurationElement.
protected CreateNewElement ( ) : ConfigurationElement
return System.Configuration.ConfigurationElement

GetElementKey() protected method

Gets the element key for a specified configuration element when overridden in a derived class.
protected GetElementKey ( ConfigurationElement element ) : object
element System.Configuration.ConfigurationElement The to return the key for. ///
return object

IsReadOnly() public method

public IsReadOnly ( ) : bool
return bool

Remove() public method

public Remove ( string key ) : void
key string
return void

RemoveAt() public method

public RemoveAt ( int index ) : void
index int
return void

this() public method

public this ( int index ) : ValueItemElement
index int
return ValueItemElement

this() public method

public this ( string key ) : ValueItemElement
key string
return ValueItemElement