DispatchRuntime::ExternalAuthorizationPolicies Property

 

Gets or sets the external authorization policies that define a set of rules for authorizing a user, given a set of claims.

Namespace:   System.ServiceModel.Dispatcher
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
property ReadOnlyCollection<IAuthorizationPolicy^>^ ExternalAuthorizationPolicies {
	ReadOnlyCollection<IAuthorizationPolicy^>^ get();
	void set(ReadOnlyCollection<IAuthorizationPolicy^>^ value);
}

Property Value

Type: System.Collections.ObjectModel::ReadOnlyCollection<IAuthorizationPolicy^>^

A ReadOnlyCollection<T> of IAuthorizationPolicy objects that define a set of rules for authorizing a user, given a set of claims.

Use this property to add a custom implementation of IAuthorizationPolicy that defines a set of rules for authorizing a user, given a set of claims. This custom implementation is used every time the service is called.

.NET Framework
Available since 3.0
Return to top
Show: