次の方法で共有


Page.User プロパティ

ページ要求を行っているユーザーに関する情報を取得します。

名前空間: System.Web.UI
アセンブリ: System.Web (system.web.dll 内)

構文

'宣言
Public ReadOnly Property User As IPrincipal
'使用
Dim instance As Page
Dim value As IPrincipal

value = instance.User
public IPrincipal User { get; }
public:
property IPrincipal^ User {
    IPrincipal^ get ();
}
/** @property */
public IPrincipal get_User ()
public function get User () : IPrincipal
適用できません。

プロパティ値

ページ要求を行っているユーザーを表す IPrincipal

解説

IPrincipal オブジェクトは、ユーザーの ID やユーザーが属しているロールを含め、コードを実行している対象のユーザーのセキュリティ コンテキストを表します。

このプロパティは、HttpContext オブジェクトの User プロパティを使用して、要求の作成元を判断します。

使用例

User プロパティを使用して、現在のユーザーの認証情報と ID 情報にアクセスするコード例を次に示します。ユーザーが認証されていない場合は、ユーザーをログイン ページにリダイレクトします。

Sub UserInfo(sender As Object, e As EventArgs)         
   Dim myPrincipal As IPrincipal = Me.User
   Dim tableString As  String 
        tableString = "<table border=""1""><tr><td>Name</td><td>"
   tableString &= Server.HtmlEncode(myPrincipal.Identity.Name) + "</td></tr><tr><td>"
   tableString &= "AuthenticationType</td><td>" + myPrincipal.Identity.AuthenticationType
   tableString &= "</td></tr><tr><td>IsAuthenticated</td><td>"
   tableString &= myPrincipal.Identity.IsAuthenticated.ToString() + "</td></tr></table>"
   Response.Write(tableString)
End Sub
void UserInfo(Object sender, EventArgs e) 
{
   IPrincipal myPrincipal = this.User;
   String tableString = "<table border=\"1\"><tr><td>Name</td><td>";
   tableString += Server.HtmlEncode(myPrincipal.Identity.Name) + "</td></tr><tr><td>";
   tableString += "AuthenticationType</td><td>" + myPrincipal.Identity.AuthenticationType;
   tableString += "</td></tr><tr><td>IsAuthenticated</td><td>";
   tableString += myPrincipal.Identity.IsAuthenticated + "</td></tr></table>";
   Response.Write(tableString);
}
void UserInfo(Object sender, EventArgs e) 
{
   IPrincipal myPrincipal = this.get_User();
   String tableString = "<table border=\"1\"><tr><td>Name</td><td>";
   tableString += get_Server().HtmlEncode(myPrincipal.get_Identity().
       get_Name()) + "</td></tr><tr><td>";
   tableString += "AuthenticationType</td><td>" 
       + myPrincipal.get_Identity().get_AuthenticationType();
   tableString += "</td></tr><tr><td>IsAuthenticated</td><td>";
   tableString += myPrincipal.get_Identity().get_IsAuthenticated() 
       + "</td></tr></table>";
   get_Response().Write(tableString);
} //UserInfo

プラットフォーム

Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition

Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。

バージョン情報

.NET Framework

サポート対象 : 3.0,2.0,1.1,1.0

参照

関連項目

Page クラス
Page メンバ
System.Web.UI 名前空間
HttpContext
IPrincipal