MetalamaAPI documentationAspect APIMetalama.​Framework.​AspectsMethod­AspectBuild­Eligibility
Open sandboxFocus

MethodAspect.BuildEligibility Method

BuildEligibility(IEligibilityBuilder<IMethod>)

Configures the eligibility of the aspect or attribute. Implementations are not allowed to reference non-static members. Implementations must call the implementation of the base class if it exists.

Declaration
public virtual void BuildEligibility(IEligibilityBuilder<IMethod> builder)
Parameters
Type Name Description
IEligibilityBuilder<IMethod> builder
Implements
IEligible<T>.BuildEligibility(IEligibilityBuilder<T>)
Remarks

Do not reference instance class members in your implementation of BuildEligibility(IEligibilityBuilder<T>). Indeed, this method is called on an instance obtained using GetUninitializedObject(Type), that is, without invoking the class constructor.

See Also