Castle.MonoRail.Framework.Views.Aspx.CommandBinding.Validate C# (CSharp) Method

Validate() protected method

Validates this instance.
protected Validate ( ) : void
return void
		protected override void Validate()
		{
			if (string.IsNullOrEmpty(commandName))
			{
				this["CommandName"] = "must be specified";
			}
		}
CommandBinding