Castle.MonoRail.Framework.Controller.Send C# (CSharp) Method

Send() public method

Performs the specified action, which means:
1. Define the default view name
2. Run the before filters
3. Select the method related to the action name and invoke it
4. On error, execute the rescues if available
5. Run the after filters
6. Invoke the view engine
public Send ( string action ) : void
action string Action name
return void
		public void Send(string action)
		{
			ResetIsPostback();
			InternalSend(action, null);
		}

Same methods

Controller::Send ( string action, IDictionary actionArgs ) : void