The DataBind Attribute is used to indicate that an Action methods parameter is to be intercepted and handled by the DataBinder.

Namespace: Castle.MonoRail.Framework
Assembly:  Castle.MonoRail.Framework (in Castle.MonoRail.Framework.dll)
Version: 1.0.3.0

Syntax

C#
[AttributeUsageAttribute(AttributeTargets.Parameter, AllowMultiple = false, 
	Inherited = false)]
public class DataBindAttribute : Attribute, IParameterBinder

Remarks

Allowed usage is one per method parameter, and is not inherited.

Inheritance Hierarchy

System..::Object
  System..::Attribute
    Castle.MonoRail.Framework..::DataBindAttribute
      Castle.MonoRail.ActiveRecordSupport..::ARDataBindAttribute

See Also