ActiveDirectoryMembershipUserとは? わかりやすく解説

ActiveDirectoryMembershipUser クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

Active Directory データ ストア格納されているメンバシップ ユーザー情報公開および更新します

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

<SerializableAttribute> _
Public Class ActiveDirectoryMembershipUser
    Inherits MembershipUser
Dim instance As ActiveDirectoryMembershipUser
[SerializableAttribute] 
public class ActiveDirectoryMembershipUser
 : MembershipUser
[SerializableAttribute] 
public ref class ActiveDirectoryMembershipUser
 : public MembershipUser
/** @attribute SerializableAttribute() */ 
public class ActiveDirectoryMembershipUser
 extends MembershipUser
SerializableAttribute 
public class ActiveDirectoryMembershipUser
 extends MembershipUser
解説解説

ActiveDirectoryMembershipUser オブジェクトは、Active Directory メンバシップ データ ストア内の単一メンバシップ ユーザーを表すのに使用されます。電子メールなどのメンバシップ ユーザーに関する情報公開しパスワード変更リセットなど、メンバシップ ユーザー情報管理する機能提供します

Active Directory データ ストア使用するようにアプリケーション構成されている場合アプリケーションメンバシップ プロバイダによって ActiveDirectoryMembershipUser オブジェクト返されます。別のデータ ストア使用するように構成できるアプリケーションや、複数データ ストア使用するアプリケーション場合は、基本クラスの MembershipUser を参照できますActiveDirectoryMembershipUser オブジェクトは LastActivityDate プロパティと LastLoginDate プロパティ実装していません。このため、これらのメンバActiveDirectoryMembershipUser オブジェクトアクセスされた場合スローされる NotSupportedException を処理できるように準備しておく必要があります

ActiveDirectoryMembershipUser クラスは、ActiveDirectoryMembershipProvider クラスによって使用される内部最適化処理を実装しており、これにより、UpdateUser メソッド呼び出し時に発生する属性更新回数最小限抑えることができますまた、SecurityIdentifier 表現 (ProviderUserKey プロパティ利用可能) をシリアル化することにより、例外スローされることなく ActiveDirectoryMembershipUser オブジェクトシリアル化と逆シリアル化を行うことができます

ActiveDirectoryMembershipUser オブジェクトは、GetUser メソッドおよび CreateUser メソッドから返されます。また、GetAllUsers、FindUsersByName、および FindUsersByEmail の各メソッドによって返される MembershipUserCollection の一部なります

既存メンバシップ ユーザー情報更新する場合には、UpdateUser メソッドActiveDirectoryMembershipUser オブジェクト必要になります

ActiveDirectoryMembershipUserプロパティは、Active Directory属性マップされますActiveDirectoryMembershipUserプロパティとその既定属性マップ次の表に示します

プロパティ

既定ディレクトリ属性

マップ可能である

ProviderUserKey

securityIdentifier

いいえ

Username

userPrincipalName

はい。ただし、userPrincipalName または sAMAccountName のいずれかである必要があります

Comment

comment

いいえ

CreationDate

whenCreated

いいえ

Email

mail

はい。ただし、Unicode 文字列型単一の値を持つ属性である必要があります

LastActivityDate

n/a

ActiveDirectoryMembershipProviderサポートされていません。

LastLoginDate

n/a

ActiveDirectoryMembershipProviderサポートされていません。

LastPasswordChangedDate

pwdLastSet

いいえ

PasswordQuestion

なし。ただし、パスワードリセットまたは取得質問解答形式セキュリティ使用している場合は、属性マップする必要があります

はい。ただし、Unicode 文字列型単一の値を持つ属性である必要があります

IsApproved

User-Account-Control (AD)

mDS-UserAccountDisabled (ADAM)

いいえ

IsLockedOut

lockoutTime および AD ロックアウト期間から計算 (Windows 2000 上の AD)

msDS-User-Account-Control-Computed (Windows Server 2003 上の AD)

msDS-User-Account-Control-Computed (ADAM)

いいえ

LastLockoutDate

無効なパスワード何度も試行されたことが原因ロックアウトされた場合は、ロックアウト時刻属性返されます。

無効なパスワード回答何度も試行されたことが原因ロックアウトされた場合は、attributeMapFailedPasswordAnswerLockoutTime定義され属性格納された値が返されます。

1 つ無効なパスワード多数無効なパスワード試行両方原因ロックアウトされた場合は、最後の日付/時刻の値が返されます。

アカウントロックアウトされていない場合SQL との互換性のために 1/1/1753 が返されます。

いいえ

使用例使用例

複数メンバシップ データ ストアからユーザー情報返す可能性のある、Web ページ上の ActiveDirectoryMembershipUser オブジェクトプロパティ使用するコード例次に示しますメンバシップ プロバイダから返されMembershipUser オブジェクトの基になる ActiveDirectoryMembershipUser オブジェクトLastActivityDate プロパティLastLoginDate プロパティ実装ていないため、メンバシップ プロバイダから返されユーザー オブジェクトの型が最初にチェックされその後でこれらのプロパティ内容表示されます。

<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML
 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

  Protected Sub Page_Load(ByVal
 sender As Object, ByVal
 e As System.EventArgs)
    Dim user As MembershipUser = Membership.GetUser()
        
    userName.Text = user.UserName
    emailAddress.Text = user.Email
        
    If TypeOf (user) Is
 ActiveDirectoryMembershipUser Then
      lastLoginDate.Text = "Not available"
      lastActivityDate.Text = "Not available"
    Else
      lastLoginDate.Text = user.LastLoginDate.ToString()
      lastActivityDate.Text = user.LastActivityDate.ToString()
    End If
    
    Dim sidValue As System.Security.Principal.SecurityIdentifier
    sidValue = CType(user.ProviderUserKey, System.Security.Principal.SecurityIdentifier)
    
    sid.Text = sidValue.ToString()
  End Sub
</script>

<html >
<head runat="server">
  <title>User information page</title>
</head>
<body>
  <form id="form1" runat="server">
    <div>
      <table>
        <tr>
          <td>
            User name:</td>
          <td>
            <asp:Literal ID="userName" runat="server"
 /></td>
        </tr>
        <tr>
          <td>
            E-mail Address:</td>
          <td>
            <asp:Literal ID="emailAddress" runat="server"
 /></td>
        </tr>
        <tr>
          <td>
            Last Login Date:</td>
          <td>
            <asp:Literal ID="lastLoginDate" runat="server"
 /></td>
        </tr>
        <tr>
          <td>
            Last Activity Date:</td>
          <td>
            <asp:Literal ID="lastActivityDate"
 runat="server" /></td>
        </tr>
        <tr>
          <td>
            Security Identifier SID:</td>
          <td>
            <asp:Literal ID="sid" runat="server"
 /></td>
        </tr>
      </table>
    </div>
  </form>
</body>
</html>
<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

  protected void Page_Load(object sender, EventArgs
 e)
  {
    MembershipUser user =
        Membership.GetUser();

    userName.Text = user.UserName;
    emailAddress.Text = user.Email;

    if (user is ActiveDirectoryMembershipUser)
    {
      lastLoginDate.Text = "Not available";
      lastActivityDate.Text = "Not available";
    }
    else
    {
      lastLoginDate.Text = user.LastLoginDate.ToShortDateString();
      lastActivityDate.Text = user.LastActivityDate.ToShortDateString();
    }
    
    System.Security.Principal.SecurityIdentifier sidValue =
      (System.Security.Principal.SecurityIdentifier)user.ProviderUserKey;

    sid.Text = sidValue.ToString();
  }
</script>

<html >
<head runat="server">
  <title>User information</title>
</head>
<body>
  <form id="form1" runat="server">
    <div>
      <table>
        <tr>
          <td>
            User name:</td>
          <td>
            <asp:Literal ID="userName" runat="server" /></td>
        </tr>
        <tr>
          <td>
            E-mail Address:</td>
          <td>
            <asp:Literal ID="emailAddress" runat="server"
 /></td>
        </tr>
        <tr>
          <td>
            Last Login Date:</td>
          <td>
            <asp:Literal ID="lastLoginDate" runat="server"
 /></td>
        </tr>
        <tr>
          <td>
            Last Activity Date:</td>
          <td>
            <asp:Literal ID="lastActivityDate" runat="server"
 /></td>
        </tr>
        <tr>
          <td>
            Security Identifier SID:</td>
          <td>
            <asp:Literal ID="sid" runat="server" /></td>
        </tr>
      </table>
    </div>
  </form>
</body>
</html>
.NET Framework のセキュリティ.NET Frameworkセキュリティ
継承階層継承階層
System.Object
   System.Web.Security.MembershipUser
    System.Web.Security.ActiveDirectoryMembershipUser
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ActiveDirectoryMembershipUser メンバ
System.Web.Security 名前空間
その他の技術情報
メンバシップ概要

ActiveDirectoryMembershipUser コンストラクタ ()

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

ActiveDirectoryMembershipUser クラス継承するクラス対しActiveDirectoryMembershipUser オブジェクト新しインスタンス初期化します。

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

Dim instance As New ActiveDirectoryMembershipUser
protected ActiveDirectoryMembershipUser ()
protected:
ActiveDirectoryMembershipUser ()
protected ActiveDirectoryMembershipUser ()
protected function ActiveDirectoryMembershipUser
 ()
解説解説

ActiveDirectoryMembershipUser コンストラクタは、コード使用するためのものではありません。

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ActiveDirectoryMembershipUser クラス
ActiveDirectoryMembershipUser メンバ
System.Web.Security 名前空間

ActiveDirectoryMembershipUser コンストラクタ (String, String, Object, String, String, String, Boolean, Boolean, DateTime, DateTime, DateTime, DateTime, DateTime)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

指定したプロパティ値を使用して、ActiveDirectoryMembershipUser クラス新しインスタンス作成します

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

Public Sub New ( _
    providerName As String, _
    name As String, _
    providerUserKey As Object, _
    email As String, _
    passwordQuestion As String, _
    comment As String, _
    isApproved As Boolean, _
    isLockedOut As Boolean, _
    creationDate As DateTime, _
    lastLoginDate As DateTime, _
    lastActivityDate As DateTime, _
    lastPasswordChangedDate As DateTime, _
    lastLockoutDate As DateTime _
)
Dim providerName As String
Dim name As String
Dim providerUserKey As Object
Dim email As String
Dim passwordQuestion As String
Dim comment As String
Dim isApproved As Boolean
Dim isLockedOut As Boolean
Dim creationDate As DateTime
Dim lastLoginDate As DateTime
Dim lastActivityDate As DateTime
Dim lastPasswordChangedDate As DateTime
Dim lastLockoutDate As DateTime

Dim instance As New ActiveDirectoryMembershipUser(providerName,
 name, providerUserKey, email, passwordQuestion, comment, isApproved, isLockedOut,
 creationDate, lastLoginDate, lastActivityDate, lastPasswordChangedDate, lastLockoutDate)
public ActiveDirectoryMembershipUser (
    string providerName,
    string name,
    Object providerUserKey,
    string email,
    string passwordQuestion,
    string comment,
    bool isApproved,
    bool isLockedOut,
    DateTime creationDate,
    DateTime lastLoginDate,
    DateTime lastActivityDate,
    DateTime lastPasswordChangedDate,
    DateTime lastLockoutDate
)
public:
ActiveDirectoryMembershipUser (
    String^ providerName, 
    String^ name, 
    Object^ providerUserKey, 
    String^ email, 
    String^ passwordQuestion, 
    String^ comment, 
    bool isApproved, 
    bool isLockedOut, 
    DateTime creationDate, 
    DateTime lastLoginDate, 
    DateTime lastActivityDate, 
    DateTime lastPasswordChangedDate, 
    DateTime lastLockoutDate
)
public ActiveDirectoryMembershipUser (
    String providerName, 
    String name, 
    Object providerUserKey, 
    String email, 
    String passwordQuestion, 
    String comment, 
    boolean isApproved, 
    boolean isLockedOut, 
    DateTime creationDate, 
    DateTime lastLoginDate, 
    DateTime lastActivityDate, 
    DateTime lastPasswordChangedDate, 
    DateTime lastLockoutDate
)
public function ActiveDirectoryMembershipUser
 (
    providerName : String, 
    name : String, 
    providerUserKey : Object, 
    email : String, 
    passwordQuestion : String, 
    comment : String, 
    isApproved : boolean, 
    isLockedOut : boolean, 
    creationDate : DateTime, 
    lastLoginDate : DateTime, 
    lastActivityDate : DateTime, 
    lastPasswordChangedDate : DateTime, 
    lastLockoutDate : DateTime
)

パラメータ

providerName

メンバシップ ユーザーの ProviderName。

name

メンバシップ ユーザーUsername

providerUserKey

メンバシップ ユーザーの ProviderUserKey。

email

メンバシップ ユーザーEmail アドレス

passwordQuestion

メンバシップ ユーザーの PasswordQuestion。

comment

メンバシップ ユーザーComment

isApproved

メンバシップ ユーザーの IsApproved 値。

isLockedOut

メンバシップ ユーザーの IsLockedOut 値。

creationDate

メンバシップ ユーザーの CreationDate。

lastLoginDate

メンバシップ ユーザーの LastLoginDate。このパラメータ使用されません。

lastActivityDate

メンバシップ ユーザーの LastActivityDate。このパラメータ使用されません。

lastPasswordChangedDate

メンバシップ ユーザーの LastPasswordChangedDate。

lastLockoutDate

メンバシップ ユーザーの LastLockoutDate。

例外例外
例外種類条件

ArgumentException

providerUserKeySecurityIdentifier オブジェクトではありません。

または

providerNamenull 参照 (Visual Basic では Nothing) であり、アプリケーション構成ファイルプロバイダ設定されていません。

解説解説

新しActiveDirectoryMembershipUser オブジェクト作成しても、メンバシップ データ ストア新しメンバシップ ユーザー オブジェクト追加されるわけではありません。新しメンバシップ ユーザーメンバシップ データ ストア追加するには、CreateUser メソッド使用する必要がありますCreateUser メソッドは、データ ストア追加されメンバシップ ユーザーActiveDirectoryMembershipUser オブジェクト返します

CreateUser、GetUser、GetAllUsers、FindUsersByName、または FindUsersByEmail の各メソッドから返されActiveDirectoryMembershipUser オブジェクトを UpdateUser メソッドに渡すこともできますが、通常アプリケーション コードでは、UpdateUser メソッド使用する ActiveDirectoryMembershipUser オブジェクト作成されます。

ActiveDirectoryMembershipUser オブジェクトは、通常CreateUserGetUserGetAllUsersUpdateUserFindUsersByName、および FindUsersByEmail の各メソッドメンバシップ プロバイダ実装によっても作成されます。

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ActiveDirectoryMembershipUser クラス
ActiveDirectoryMembershipUser メンバ
System.Web.Security 名前空間

ActiveDirectoryMembershipUser コンストラクタ

ActiveDirectoryMembershipUser クラス新しインスタンス初期化します。
オーバーロードの一覧オーバーロードの一覧

名前 説明
ActiveDirectoryMembershipUser () ActiveDirectoryMembershipUser クラス継承するクラス対しActiveDirectoryMembershipUser オブジェクト新しインスタンス初期化します。
ActiveDirectoryMembershipUser (String, String, Object, String, String, String, Boolean, Boolean, DateTime, DateTime, DateTime, DateTime, DateTime) 指定したプロパティ値を使用してActiveDirectoryMembershipUser クラス新しインスタンス作成します
参照参照

関連項目

ActiveDirectoryMembershipUser クラス
ActiveDirectoryMembershipUser メンバ
System.Web.Security 名前空間

ActiveDirectoryMembershipUser プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ Comment オーバーライドされますメンバシップ ユーザーアプリケーション固有情報取得または設定します
パブリック プロパティ CreationDate  ユーザーメンバシップ データ ストア追加され日時取得します。 ( MembershipUser から継承されます。)
パブリック プロパティ Email オーバーライドされますメンバシップ ユーザー電子メール アドレス取得または設定します
パブリック プロパティ IsApproved オーバーライドされますメンバシップ ユーザー認証できるかどうかを示す値を取得または設定します
パブリック プロパティ IsLockedOut  メンバシップ ユーザーロックされ検証できない状態であるかどうかを示す値を取得します。 ( MembershipUser から継承されます。)
パブリック プロパティ IsOnline  ユーザーオンライン中であるかどうかを示す値を取得します。 ( MembershipUser から継承されます。)
パブリック プロパティ LastActivityDate オーバーライドされます。 常に NotSupportedException 例外スローます。
パブリック プロパティ LastLockoutDate  メンバシップ ユーザーロックされ最新日時取得します。 ( MembershipUser から継承されます。)
パブリック プロパティ LastLoginDate オーバーライドされます。 常に NotSupportedException 例外スローます。
パブリック プロパティ LastPasswordChangedDate  メンバシップ ユーザーパスワード最後に更新されたときの日時取得します。 ( MembershipUser から継承されます。)
パブリック プロパティ PasswordQuestion  メンバシップ ユーザー対すパスワード質問取得します。 ( MembershipUser から継承されます。)
パブリック プロパティ ProviderName  メンバシップ ユーザーユーザー情報格納および取得するメンバシップ プロバイダの名前を取得します。 ( MembershipUser から継承されます。)
パブリック プロパティ ProviderUserKey オーバーライドされますActive Directory データ ストアからメンバシップ ユーザーユーザー ID取得します
パブリック プロパティ UserName  メンバシップ ユーザーログオン名を取得します。 ( MembershipUser から継承されます。)
参照参照

関連項目

ActiveDirectoryMembershipUser クラス
System.Web.Security 名前空間

その他の技術情報

メンバシップ概要

ActiveDirectoryMembershipUser メソッド


パブリック メソッドパブリック メソッド

( プロテクト メソッド参照)
  名前 説明
パブリック メソッド ChangePassword  メンバシップ データ ストア内のメンバシップ ユーザーパスワード更新します。 ( MembershipUser から継承されます。)
パブリック メソッド ChangePasswordQuestionAndAnswer  メンバシップ データ ストア内のメンバシップ ユーザーパスワード質問解答更新します。 ( MembershipUser から継承されます。)
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 ( Object から継承されます。)
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 ( Object から継承されます。)
パブリック メソッド GetPassword  オーバーロードされますメンバシップ データ ストアからメンバシップ ユーザーパスワード取得します。 ( MembershipUser から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 ( Object から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 ( Object から継承されます。)
パブリック メソッド ResetPassword  オーバーロードされますユーザーパスワードを、自動的に生成され新しパスワードリセットします。 ( MembershipUser から継承されます。)
パブリック メソッド ToString  メンバシップ ユーザーユーザー名返します。 ( MembershipUser から継承されます。)
パブリック メソッド UnlockUser  ユーザーロック状態を解除してメンバシップ ユーザー検証可能な状態にします。 ( MembershipUser から継承されます。)
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

ActiveDirectoryMembershipUser クラス
System.Web.Security 名前空間

その他の技術情報

メンバシップ概要

ActiveDirectoryMembershipUser メンバ

Active Directory データ ストア格納されているメンバシップ ユーザー情報公開および更新します

ActiveDirectoryMembershipUser データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
( プロテクト コンストラクタ参照)
  名前 説明
パブリック メソッド ActiveDirectoryMembershipUser オーバーロードされます。 ActiveDirectoryMembershipUser クラス新しインスタンス初期化します。
プロテクト コンストラクタプロテクト コンストラクタ
  名前 説明
プロテクト メソッド ActiveDirectoryMembershipUser オーバーロードされますActiveDirectoryMembershipUser クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ Comment オーバーライドされますメンバシップ ユーザーアプリケーション固有情報取得または設定します
パブリック プロパティ CreationDate  ユーザーメンバシップ データ ストア追加され日時取得します。(MembershipUser から継承されます。)
パブリック プロパティ Email オーバーライドされますメンバシップ ユーザー電子メール アドレス取得または設定します
パブリック プロパティ IsApproved オーバーライドされますメンバシップ ユーザー認証できるかどうかを示す値を取得または設定します
パブリック プロパティ IsLockedOut  メンバシップ ユーザーロックされ検証できない状態であるかどうかを示す値を取得します。(MembershipUser から継承されます。)
パブリック プロパティ IsOnline  ユーザーオンライン中であるかどうかを示す値を取得します。(MembershipUser から継承されます。)
パブリック プロパティ LastActivityDate オーバーライドされます。 常に NotSupportedException 例外スローます。
パブリック プロパティ LastLockoutDate  メンバシップ ユーザーロックされ最新日時取得します。(MembershipUser から継承されます。)
パブリック プロパティ LastLoginDate オーバーライドされます。 常に NotSupportedException 例外スローます。
パブリック プロパティ LastPasswordChangedDate  メンバシップ ユーザーパスワード最後に更新されたときの日時取得します。(MembershipUser から継承されます。)
パブリック プロパティ PasswordQuestion  メンバシップ ユーザー対すパスワード質問取得します。(MembershipUser から継承されます。)
パブリック プロパティ ProviderName  メンバシップ ユーザーユーザー情報格納および取得するメンバシップ プロバイダの名前を取得します。(MembershipUser から継承されます。)
パブリック プロパティ ProviderUserKey オーバーライドされますActive Directory データ ストアからメンバシップ ユーザーユーザー ID取得します
パブリック プロパティ UserName  メンバシップ ユーザーログオン名を取得します。(MembershipUser から継承されます。)
パブリック メソッドパブリック メソッド
( プロテクト メソッド参照)
  名前 説明
パブリック メソッド ChangePassword  メンバシップ データ ストア内のメンバシップ ユーザーパスワード更新します。 (MembershipUser から継承されます。)
パブリック メソッド ChangePasswordQuestionAndAnswer  メンバシップ データ ストア内のメンバシップ ユーザーパスワード質問解答更新します。 (MembershipUser から継承されます。)
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 (Object から継承されます。)
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 (Object から継承されます。)
パブリック メソッド GetPassword  オーバーロードされますメンバシップ データ ストアからメンバシップ ユーザーパスワード取得します。 (MembershipUser から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 (Object から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 (Object から継承されます。)
パブリック メソッド ResetPassword  オーバーロードされますユーザーパスワードを、自動的に生成され新しパスワードリセットします。 (MembershipUser から継承されます。)
パブリック メソッド ToString  メンバシップ ユーザーユーザー名返します。 (MembershipUser から継承されます。)
パブリック メソッド UnlockUser  ユーザーロック状態を解除してメンバシップ ユーザー検証可能な状態にします。 (MembershipUser から継承されます。)
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

ActiveDirectoryMembershipUser クラス
System.Web.Security 名前空間

その他の技術情報

メンバシップ概要



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「ActiveDirectoryMembershipUser」の関連用語

ActiveDirectoryMembershipUserのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



ActiveDirectoryMembershipUserのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS