다음을 통해 공유


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 권한 부여 결정을 반환하여 액세스를 허용하거나 거부합니다.

적용 대상

추가 정보