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());
}