ServiceAuthorizationManager.GetAuthorizationPolicies(OperationContext) Method
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 set of policies that participate in policy evaluation.
protected:
virtual System::Collections::ObjectModel::ReadOnlyCollection<System::IdentityModel::Policy::IAuthorizationPolicy ^> ^ GetAuthorizationPolicies(System::ServiceModel::OperationContext ^ operationContext);
protected virtual System.Collections.ObjectModel.ReadOnlyCollection<System.IdentityModel.Policy.IAuthorizationPolicy> GetAuthorizationPolicies (System.ServiceModel.OperationContext operationContext);
abstract member GetAuthorizationPolicies : System.ServiceModel.OperationContext -> System.Collections.ObjectModel.ReadOnlyCollection<System.IdentityModel.Policy.IAuthorizationPolicy>
override this.GetAuthorizationPolicies : System.ServiceModel.OperationContext -> System.Collections.ObjectModel.ReadOnlyCollection<System.IdentityModel.Policy.IAuthorizationPolicy>
Protected Overridable Function GetAuthorizationPolicies (operationContext As OperationContext) As ReadOnlyCollection(Of IAuthorizationPolicy)
Parameters
- operationContext
- OperationContext
The OperationContext of the current authorization request.
Returns
A ReadOnlyCollection<T> of type IAuthorizationPolicy.
Remarks
The Windows Communication Foundation (WCF) implementation provides a default set of authorization policies. These include the primary token that contains the credentials of the requester and all supporting tokens, transport tokens, and external policies if specified.
You can override this implementation and provide a different set of policies.