WindowsAuthenticationEventArgs.Identity プロパティ

定義

WindowsAuthenticationEventArgs コンストラクターに渡される Windows ID を取得します。

public System.Security.Principal.WindowsIdentity Identity { get; }

プロパティ値

WindowsAuthenticationEventArgs コンストラクターに渡された Windows ID。

次のコード例では、 WindowsAuthentication_OnAuthenticate イベントを使用して、 User 現在 HttpContext の の プロパティをカスタム IPrincipal オブジェクトに設定します。

public void WindowsAuthentication_OnAuthenticate(object sender, WindowsAuthenticationEventArgs args)
{
  if (!args.Identity.IsAnonymous)
  {
    args.User = new Samples.AspNet.Security.MyPrincipal(args.Identity);
  }
}

注釈

WindowsAuthenticationModuleWindowsAuthenticationEventArgs IIS と現在 HttpContext の によって提供される Windows ID を使用して オブジェクトを構築し、 WindowsAuthentication_OnAuthenticate イベントに渡します。

IIS で匿名認証を使用する Identity 場合、 プロパティは メソッドによって返される ID に GetAnonymous 設定されます。

適用対象

製品 バージョン
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

こちらもご覧ください