C# Class Castle.MonoRail.Framework.AjaxActionAttribute

Inheritance: System.Attribute
Show file Open project: nats/castle-1.0.3-mono

Public Methods

Method Description
AjaxActionAttribute ( ) : System

Method marked with this attribute will be accessible through AJAX calls, and AjaxHelper will be able to generate a JavaScript proxy for them.

AjaxActionAttribute ( string name ) : System

Method marked with this attribute will be accessible through AJAX calls, and AjaxHelper will be able to generate a JavaScript proxy for them.

Method Details

AjaxActionAttribute() public method

Method marked with this attribute will be accessible through AJAX calls, and AjaxHelper will be able to generate a JavaScript proxy for them.
public AjaxActionAttribute ( ) : System
return System

AjaxActionAttribute() public method

Method marked with this attribute will be accessible through AJAX calls, and AjaxHelper will be able to generate a JavaScript proxy for them.
public AjaxActionAttribute ( string name ) : System
name string /// A name for the action, on the JavaScript proxy. Useful when dealing with /// overloaded Ajax actions, as JavaScript does not support function overloading. ///
return System