Castle.MonoRail.Framework.Views.Aspx.Design.StandardTarget.StandardTarget C# (CSharp) Method

StandardTarget() public method

Initializes a new instance of the StandardTarget class.
public StandardTarget ( Type type, string name ) : System
type System.Type The type.
name string The name.
return System
		public StandardTarget(Type type, string name) : this(name)
		{
			if (type == null)
			{
				throw new ArgumentNullException("type");
			}

			this.type = type;
		}

Same methods

StandardTarget::StandardTarget ( object instance, string name ) : System
StandardTarget::StandardTarget ( string name ) : System