다음을 통해 공유


ModuleService.Context 속성

정의

모듈 서비스의 관리 컨텍스트를 가져옵니다.

public:
 property Microsoft::Web::Management::Server::IManagementContext ^ Context { Microsoft::Web::Management::Server::IManagementContext ^ get(); };
public Microsoft.Web.Management.Server.IManagementContext Context { get; }
member this.Context : Microsoft.Web.Management.Server.IManagementContext
Public ReadOnly Property Context As IManagementContext

속성 값

IManagementContext 인터페이스입니다.

예제

다음 예제에서는 사용 하 Context 여는 클라이언트 및 현재 사용자에 대 한 정보를 가져올 속성을 추적 출력에 정보를 씁니다.

public void TraceContext() {

    Trace.WriteLine("Context.ClientClrVersion : " + Context.ClientClrVersion +
        "\n IsLocalConnection " + Context.IsLocalConnection.ToString() +
        "\n User.Identity.AuthenticationType " +
        Context.User.Identity.AuthenticationType.ToString() +
        "\n User.IsInRole(Administrator) " +
        Context.User.IsInRole(WindowsBuiltInRole.Administrator.ToString()).ToString());
}

적용 대상