EvaluationContext.Generation Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the number of times that claims have been added to the evaluation context.
public:
abstract property int Generation { int get(); };
public abstract int Generation { get; }
member this.Generation : int
Public MustOverride ReadOnly Property Generation As Integer
Property Value
The number of times that claims have been added to the evaluation context.
Remarks
The ServiceAuthorizationManager class uses the Generation property to determine if another evaluation round is required. Each time an authorization policy calls the AddToTarget
method to add claims to the evaluation context, the Generation property is incremented.
The ServiceAuthorizationManager class examines the Generation property after calling the Evaluate method on all authorization policies again. If the Generation property has been incremented during evaluation, the ServiceAuthorizationManager class calls the Evaluate method on any authorization policies that returned false
the last time the Evaluate method was called on that authorization policy.