C# Class Castle.MonoRail.Framework.FilterAttribute

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

Public Methods

Method Description
BuildFilterDescriptors ( ) : Castle.MonoRail.Framework.Descriptors.FilterDescriptor[]

Implementation of IFilterDescriptorBuilder. Returns the descriptor for this filter association.

FilterAttribute ( ExecuteEnum when, Type filterType ) : System

Constructs a FilterAttribute associating the filter type and when the filter should be invoked.

Method Details

BuildFilterDescriptors() public method

Implementation of IFilterDescriptorBuilder. Returns the descriptor for this filter association.
public BuildFilterDescriptors ( ) : Castle.MonoRail.Framework.Descriptors.FilterDescriptor[]
return Castle.MonoRail.Framework.Descriptors.FilterDescriptor[]

FilterAttribute() public method

Constructs a FilterAttribute associating the filter type and when the filter should be invoked.
public FilterAttribute ( ExecuteEnum when, Type filterType ) : System
when ExecuteEnum When to execute the filter
filterType System.Type The filter implementation
return System