次の方法で共有


WindowsAuthenticationEventArgs.Identity プロパティ

定義

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

public:
 property System::Security::Principal::WindowsIdentity ^ Identity { System::Security::Principal::WindowsIdentity ^ get(); };
public System.Security.Principal.WindowsIdentity Identity { get; }
member this.Identity : System.Security.Principal.WindowsIdentity
Public ReadOnly Property Identity As WindowsIdentity

プロパティ値

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);
  }
}
Public Sub WindowsAuthentication_OnAuthenticate(sender As Object, args As WindowsAuthenticationEventArgs)
  If Not args.Identity.IsAnonymous Then
    args.User = New Samples.AspNet.Security.MyPrincipal(args.Identity)
  End If
End Sub

注釈

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

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

適用対象

こちらもご覧ください