[This is preliminary documentation and is subject to change.]

Indicates whether or not the rule is eligible to be used

Namespace: Clarion.Framework.Core
Assembly: ClarionLibrary (in ClarionLibrary.dll) Version: 6.1.1.0 (6.1.1.0)

Syntax

C#
public override bool IsEligible(
	ActivationCollection currentInput
)

Parameters

currentInput
Type: Clarion.Framework..::..ActivationCollection
(optional) The current activation collection used for checking a component's eligibility

Return Value

True if the component is eligible, otherwise False

Remarks

This method is called internally by the system before attempting to use a rule.

Note
Users can specify their own, customized, method for checking the eligibility by overriding the method in a subclass (although this is not usually recommended)

See Also