Castle.MicroKernel.SubSystems.Naming.TreeNode.TreeNode C# (CSharp) Method

TreeNode() public method

public TreeNode ( ComponentName compName, IHandler handler ) : System
compName ComponentName
handler IHandler
return System
		public TreeNode(ComponentName compName, IHandler handler)
		{
			if (compName == null) throw new ArgumentNullException("compName");
			if (handler == null) throw new ArgumentNullException("handler");

			this.compName = compName;
			this.handler = handler;
		}