Udostępnij za pośrednictwem


ServiceAuthorizationBehavior.ServiceAuthorizationManager Właściwość

Definicja

Pobiera lub ustawia menedżera autoryzacji usługi.

public:
 property System::ServiceModel::ServiceAuthorizationManager ^ ServiceAuthorizationManager { System::ServiceModel::ServiceAuthorizationManager ^ get(); void set(System::ServiceModel::ServiceAuthorizationManager ^ value); };
public System.ServiceModel.ServiceAuthorizationManager ServiceAuthorizationManager { get; set; }
member this.ServiceAuthorizationManager : System.ServiceModel.ServiceAuthorizationManager with get, set
Public Property ServiceAuthorizationManager As ServiceAuthorizationManager

Wartość właściwości

ServiceAuthorizationManager

Menedżer autoryzacji usługi.

Przykłady

Poniższy kod pokazuje, jak ustawić tę właściwość tak, aby korzystała z niestandardowego menedżera autoryzacji usługi.

ServiceHost myServiceHost = new ServiceHost(typeof(Calculator), baseUri);
ServiceAuthorizationBehavior myServiceBehavior =
    myServiceHost.Description.Behaviors.Find<ServiceAuthorizationBehavior>();
myServiceBehavior.PrincipalPermissionMode =
    PrincipalPermissionMode.UseAspNetRoles;
MyServiceAuthorizationManager sm = new MyServiceAuthorizationManager();
myServiceBehavior.ServiceAuthorizationManager = sm;
Dim myServiceHost As New ServiceHost(GetType(Calculator), baseUri)
Dim myServiceBehavior As ServiceAuthorizationBehavior = myServiceHost.Description.Behaviors.Find(Of ServiceAuthorizationBehavior)()
myServiceBehavior.PrincipalPermissionMode = PrincipalPermissionMode.UseAspNetRoles
Dim sm As New MyServiceAuthorizationManager()
myServiceBehavior.ServiceAuthorizationManager = sm

Uwagi

Klasa ServiceAuthorizationManager jest odpowiedzialna za ocenę wszystkich zasad, łączenie łańcucha do przodu i do tyłu, opcjonalnie łączenie wynikowe AuthorizationContext z ServiceSecurityContext i zwracanie decyzji true autoryzacji lub zezwalanie na dostęp lub false odmawianie dostępu.

Dotyczy

Zobacz też