ModuleService.Context 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
모듈 서비스의 관리 컨텍스트를 가져옵니다.
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());
}