次の方法で共有


ServiceAuthorizationBehavior.ServiceAuthorizationManager プロパティ

定義

サービス承認マネージャーを取得または設定します。

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

プロパティ値

ServiceAuthorizationManager

サービス承認マネージャー。

このプロパティを設定して、カスタム サービス承認マネージャーを使用する方法を次のコードに示します。

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

注釈

ServiceAuthorizationManager クラスは、すべてのポリシーを評価し、フォワード チェーンおよびバックワード チェーンを行います。また、オプションで、結果として得られる AuthorizationContextServiceSecurityContext に接続し、アクセスを許可または拒否するための承認決定を true または false で返します。

適用対象

こちらもご覧ください