AccountStore Class
Represents a service that defines identities and attributes for controlling user access to Web site resources, such as Active Directory Domain Services.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Inheritance Hierarchy
System.Object
System.Web.Security.SingleSignOn.TrustPolicyEntryBase
System.Web.Security.SingleSignOn.TrustPolicyEntry
System.Web.Security.SingleSignOn.AccountStore
System.Web.Security.SingleSignOn.ActiveDirectoryAccountStore
System.Web.Security.SingleSignOn.LdapDirectoryAccountStore
Syntax
[ComVisibleAttribute(true)]
public abstract class AccountStore : TrustPolicyEntry
[ComVisibleAttribute(true)]
public ref class AccountStore abstract : TrustPolicyEntry
[<AbstractClass>]
[<ComVisibleAttribute(true)>]
type AccountStore =
class
inherit TrustPolicyEntry
end
<ComVisibleAttribute(True)>
Public MustInherit Class AccountStore
Inherits TrustPolicyEntry
Constructors
Name | Description | |
---|---|---|
AccountStore() | Supports the AD FS infrastructure and is not intended to be used directly from your code. Initializes an instance of the AccountStore class. |
Properties
Name | Description | |
---|---|---|
Disabled | Gets or sets whether the trust with this realm is currently active. If this is set, no tokens will be accepted from this partner.(Inherited from TrustPolicyEntryBase.) |
|
m_accountStoreType | Gets or sets the type of AccountStore. |
|
m_accountStoreTypeDisplay | Gets or sets the display name of the AccountStore.AccountStoreType of the object. |
|
TrustEntryDisplayName | Gets or sets the display name for this TrustPolicyEntry.(Inherited from TrustPolicyEntry.) |
|
TrustPolicyEntryUri | Gets or sets the Uri for this TrustPolicyEntry.(Inherited from TrustPolicyEntry.) |
|
uuid | Gets or sets the universal unique identifier (UUID) for this TrustPolicyEntryBase object.(Inherited from TrustPolicyEntryBase.) |
Methods
Name | Description | |
---|---|---|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
MemberwiseClone() | (Inherited from Object.) |
|
ToString() | (Inherited from Object.) |
Remarks
AccountStore is an abstract class used for Active Directory Federation Services. There are two implementations of this class:
Thread Safety
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
System.Web.Security.SingleSignOn Namespace
Return to top