Castle.MonoRail.ControllerExecutor.Execute C# (CSharp) Méthode

Execute() public méthode

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

			executor.Execute(controller);
		}
	}