Castle.Core.ParameterModelCollection.Add C# (CSharp) Method

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
		public void Add(String name, IConfiguration configNode)
		{
			dictionary.Add(name, new ParameterModel(name, configNode));
		}

Same methods

ParameterModelCollection::Add ( String name, String value ) : void
ParameterModelCollection::Add ( object key, object value ) : void