C# Class Castle.MonoRail.Framework.Internal.FilterDescriptor

Represents the meta information and type of an implementation of IFilter.
Inheritance: ICloneable
Datei anzeigen Open project: nats/castle-1.0.3-mono Class Usage Examples

Public Methods

Method Description
Clone ( ) : object

Creates a new object that is a copy of the current instance.

FilterDescriptor ( Type filterType, ExecuteEnum when, int executionOrder, FilterAttribute attribute ) : System

Initializes a new instance of the FilterDescriptor class.

Method Details

Clone() public method

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
return object

FilterDescriptor() public method

Initializes a new instance of the FilterDescriptor class.
public FilterDescriptor ( Type filterType, ExecuteEnum when, int executionOrder, FilterAttribute attribute ) : System
filterType System.Type Type of the filter.
when ExecuteEnum The flag that defines when it should run.
executionOrder int The execution order.
attribute FilterAttribute The attribute.
return System