ActiveDirectoryMembershipUser.ProviderUserKey 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得成員資格使用者之 Active Directory 資料存放區的使用者識別項。
public:
virtual property System::Object ^ ProviderUserKey { System::Object ^ get(); };
public override object ProviderUserKey { get; }
member this.ProviderUserKey : obj
Public Overrides ReadOnly Property ProviderUserKey As Object
屬性值
成員資格使用者之 Active Directory 資料存放區的使用者識別項。
範例
下列程式碼範例會 ProviderUserKey 藉由將它轉換成 SecurityIdentifier 物件,以安全性描述元定義語言 (SDDL) 格式顯示 屬性。 如需執行範例所需的完整程式碼,請參閱類別概觀主題的 ActiveDirectoryMembershipUser 範例一節。
System.Security.Principal.SecurityIdentifier sidValue =
(System.Security.Principal.SecurityIdentifier)user.ProviderUserKey;
sid.Text = sidValue.ToString();
Dim sidValue As System.Security.Principal.SecurityIdentifier
sidValue = CType(user.ProviderUserKey, System.Security.Principal.SecurityIdentifier)
sid.Text = sidValue.ToString()
備註
屬性 ProviderUserKey 會公開成員資格資料來源的識別碼,其類型一般為 object
。 類別 ProviderUserKey 可以轉換成 SecurityIdentifier 物件。