次の方法で共有


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

適用対象