C# Class Spring.Objects.Factory.Support.AutowireCandidateQualifier

Qualifier for resolving autowire candidates. A bean definition that includes one or more such qualifiers enables fine-grained matching against annotations on a field or parameter to be autowired.
Inheritance: ObjectMetadataAttributeAccessor
显示文件 Open project: spring-projects/spring-net Class Usage Examples

Public Properties

Property Type Description
VALUE_KEY string

Public Methods

Method Description
AutowireCandidateQualifier ( Type type ) : System

Construct a qualifier to match against an annotation of the given type.

AutowireCandidateQualifier ( Type type, object value ) : System

Construct a qualifier to match against an annotation of the given type whose value attribute also matches the specified value.

AutowireCandidateQualifier ( string typeName ) : System

Construct a qualifier to match against an annotation of the given type name.

The type name may match the fully-qualified class name of the annotation or the short class name (without the package).

AutowireCandidateQualifier ( string typeName, object value ) : System

Construct a qualifier to match against an annotation of the given type name whose value attribute also matches the specified value.

The type name may match the fully-qualified class name of the annotation or the short class name (without the package).

Method Details

AutowireCandidateQualifier() public method

Construct a qualifier to match against an annotation of the given type.
public AutowireCandidateQualifier ( Type type ) : System
type System.Type type the annotation type
return System

AutowireCandidateQualifier() public method

Construct a qualifier to match against an annotation of the given type whose value attribute also matches the specified value.
public AutowireCandidateQualifier ( Type type, object value ) : System
type System.Type the annotation type
value object the annotation value to match
return System

AutowireCandidateQualifier() public method

Construct a qualifier to match against an annotation of the given type name.

The type name may match the fully-qualified class name of the annotation or the short class name (without the package).

public AutowireCandidateQualifier ( string typeName ) : System
typeName string the name of the annotation type
return System

AutowireCandidateQualifier() public method

Construct a qualifier to match against an annotation of the given type name whose value attribute also matches the specified value.

The type name may match the fully-qualified class name of the annotation or the short class name (without the package).

public AutowireCandidateQualifier ( string typeName, object value ) : System
typeName string the name of the annotation type
value object the annotation value to match
return System

Property Details

VALUE_KEY public_oe static_oe property

public static string VALUE_KEY
return string