Castle.MonoRail.ControllerExecutor.Execute C# (CSharp) Method

Execute() public method

public Execute ( ActionExecutor executor ) : void
executor ActionExecutor
return void
		public void Execute(ActionExecutor executor)
		{
			if (executor == null) throw new ArgumentNullException("executor");

			executor.Execute(controller);
		}
	}