C# Class Castle.Core.ParameterModelCollection

Inheritance: IEnumerable
Datei anzeigen Open project: nats/castle-1.0.3-mono Class Usage Examples

Public Methods

Method Description
Add ( String name, IConfiguration configNode ) : void

Adds the specified name.

Add ( String name, String value ) : void

Adds the specified name.

Add ( object key, object value ) : void

Adds the specified key.

Not implemented

Clear ( ) : void

Clears this instance.

Not implemented

Contains ( object key ) : bool

Determines whether this collection contains the specified key.

CopyTo ( Array array, int index ) : void

Copy the content to the specified array

Not implemented

GetEnumerator ( ) : IEnumerator

Returns an enumerator that can iterate through a collection.

ParameterModelCollection ( ) : System

Initializes a new instance of the ParameterModelCollection class.

Remove ( object key ) : void

Removes the specified key.

Not implemented

this ( object key ) : ParameterModel

Gets the ParameterModel with the specified key.

Method Details

Add() public method

Adds the specified name.
public Add ( String name, IConfiguration configNode ) : void
name String The name.
configNode IConfiguration The config node.
return void

Add() public method

Adds the specified name.
public Add ( String name, String value ) : void
name String The name.
value String The value.
return void

Add() public method

Adds the specified key.
Not implemented
public Add ( object key, object value ) : void
key object The key.
value object The value.
return void

Clear() public method

Clears this instance.
Not implemented
public Clear ( ) : void
return void

Contains() public method

Determines whether this collection contains the specified key.
public Contains ( object key ) : bool
key object The key.
return bool

CopyTo() public method

Copy the content to the specified array
Not implemented
public CopyTo ( Array array, int index ) : void
array System.Array target array
index int target index
return void

GetEnumerator() public method

Returns an enumerator that can iterate through a collection.
public GetEnumerator ( ) : IEnumerator
return IEnumerator

ParameterModelCollection() public method

Initializes a new instance of the ParameterModelCollection class.
public ParameterModelCollection ( ) : System
return System

Remove() public method

Removes the specified key.
Not implemented
public Remove ( object key ) : void
key object The key.
return void

this() public method

Gets the ParameterModel with the specified key.
public this ( object key ) : ParameterModel
key object
return ParameterModel