EvaluationContext.Properties Property

Definition

Gets a collection of non-claim properties associated with this EvaluationContext.

public:
 abstract property System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ Properties { System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ get(); };
public abstract System.Collections.Generic.IDictionary<string,object> Properties { get; }
member this.Properties : System.Collections.Generic.IDictionary<string, obj>
Public MustOverride ReadOnly Property Properties As IDictionary(Of String, Object)

Property Value

A Dictionary<TKey,TValue> that specifies a collection of non-claim properties.

Remarks

The classes in the System.IdentityModel.Selectors namespace that implement the IAuthorizationPolicy interface (authorization policies) add a property named Identities to the.Properties collection. The Identities property contains an object of type IList<T> that contains one or more IIdentity instances that represent identity information that is provided by the authorization policies.

Applies to