C# Class Spring.Context.Attributes.TypeFilters.AbstractLoadTypeFilter

Abstract Type Filter that provides methods to load a required type from assembly.
Inheritance: ITypeFilter
Mostra file Open project: spring-projects/spring-net-codeconfig

Protected Properties

Property Type Description
RequiredType System.Type

Public Methods

Method Description
Match ( Type type ) : bool

Determine a match based on the given type object.

Protected Methods

Method Description
GetRequiredType ( string typeToLoad ) : void

Is loading a Type from a string passed to method in the form [Type.FullName], [Assembly.Name]

Method Details

GetRequiredType() protected method

Is loading a Type from a string passed to method in the form [Type.FullName], [Assembly.Name]
protected GetRequiredType ( string typeToLoad ) : void
typeToLoad string
return void

Match() public abstract method

Determine a match based on the given type object.
public abstract Match ( Type type ) : bool
type System.Type
return bool

Property Details

RequiredType protected_oe property

Required Type to compare against provided Type
protected Type,System RequiredType
return System.Type