AccountStoreCollection Class

 

Defines methods and properties for a collection of AccountStore objects.

Namespace:   System.Web.Security.SingleSignOn
Assembly:  System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)

Inheritance Hierarchy

System.Object
  System.Collections.CollectionBase
    System.Web.Security.SingleSignOn.TrustPolicyEntryCollection
      System.Web.Security.SingleSignOn.AccountStoreCollection

Syntax

[ComVisibleAttribute(true)]
public class AccountStoreCollection : TrustPolicyEntryCollection
[ComVisibleAttribute(true)]
public ref class AccountStoreCollection : TrustPolicyEntryCollection
[<ComVisibleAttribute(true)>]
type AccountStoreCollection = 
    class
        inherit TrustPolicyEntryCollection
    end
<ComVisibleAttribute(True)>
Public Class AccountStoreCollection
    Inherits TrustPolicyEntryCollection

Properties

Name Description
System_CAPS_pubproperty ActiveDirectory

Gets an ActiveDirectoryAccountStore object that is a member of this AccountStoreCollection collection.

System_CAPS_pubproperty Capacity

(Inherited from CollectionBase.)

System_CAPS_pubproperty Count

(Inherited from CollectionBase.)

System_CAPS_protproperty InnerList

(Inherited from CollectionBase.)

System_CAPS_pubproperty Item[Guid]

Gets the AccountStore object whose uuid matches the specified GUID.

System_CAPS_pubproperty Item[Int32]

Gets or sets the AccountStore object at the specified index.

System_CAPS_pubproperty Item[String]

Gets the AccountStore object whose TrustPolicyEntryUri property matches the specified URI.

System_CAPS_protproperty List

(Inherited from CollectionBase.)

System_CAPS_protproperty TP

Gets or sets the TrustPolicy.(Inherited from TrustPolicyEntryCollection.)

Methods

Name Description
System_CAPS_pubmethod Add(TrustPolicyEntry)

Adds an item to the TrustPolicyEntryCollection.(Inherited from TrustPolicyEntryCollection.)

System_CAPS_pubmethod Clear()

(Inherited from CollectionBase.)

System_CAPS_pubmethod Contains(TrustPolicyEntry)

Determines whether the TrustPolicyEntryCollection contains a specific element.(Inherited from TrustPolicyEntryCollection.)

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetEnumerator()

(Inherited from CollectionBase.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod IndexOf(TrustPolicyEntry)

Searches for the specified TrustPolicyEntry and returns the zero-based index of the first occurrence within the entire collection.(Inherited from TrustPolicyEntryCollection.)

System_CAPS_pubmethod Insert(Int32, TrustPolicyEntry)

Inserts an element into the TrustPolicyEntryCollection at the specified index.(Inherited from TrustPolicyEntryCollection.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod NewActiveDirectoryStore()

Adds a new ActiveDirectoryAccountStore object to the AccountStoreCollection.

System_CAPS_pubmethod NewAdamAccountStore(String, String, String, String, Int32, String)

Adds a new LdapDirectoryAccountStore object that represents an ADAM store to the AccountStoreCollection collection.

System_CAPS_protmethod OnClear()

Performs additional custom processes when clearing the contents of the TrustPolicyEntryCollection instance.(Inherited from TrustPolicyEntryCollection.)

System_CAPS_protmethod OnClearComplete()

(Inherited from CollectionBase.)

System_CAPS_protmethod OnInsert(Int32, Object)

(Inherited from CollectionBase.)

System_CAPS_protmethod OnInsertComplete(Int32, Object)

This API supports the product infrastructure and is not intended to be used directly from your code. Supports the AD FS infrastructure and is not intended to be used directly from your code. Performs consistency checks on the object when a new AccountStore is added to the AccountStoreCollection.(Overrides TrustPolicyEntryCollection.OnInsertComplete(Int32, Object).)

System_CAPS_protmethod OnRemove(Int32, Object)

(Inherited from CollectionBase.)

System_CAPS_protmethod OnRemoveComplete(Int32, Object)

This API supports the product infrastructure and is not intended to be used directly from your code. Supports the AD FS infrastructure and is not intended to be used directly from your code. Performs consistency checks on the object when a new AccountStore is removed from the AccountStoreCollection.(Overrides TrustPolicyEntryCollection.OnRemoveComplete(Int32, Object).)

System_CAPS_protmethod OnSet(Int32, Object, Object)

(Inherited from CollectionBase.)

System_CAPS_protmethod OnSetComplete(Int32, Object, Object)

Supports the AD FS infrastructure and is not intended to be used directly from your code. Performs consistency checks on the object when a new AccountStore is set at a particular index in the collection.(Overrides TrustPolicyEntryCollection.OnSetComplete(Int32, Object, Object).)

System_CAPS_protmethod OnValidate(Object)

Checks that the specified object uses the AccountStore type. This ensures that the AccountStoreCollection collection contains only objects of the AccountStore class. (Overrides TrustPolicyEntryCollection.OnValidate(Object).)

System_CAPS_pubmethod Remove(TrustPolicyEntry)

Removes the first occurrence of a specific object from the TrustPolicyEntryCollection.(Inherited from TrustPolicyEntryCollection.)

System_CAPS_pubmethod RemoveAt(Int32)

(Inherited from CollectionBase.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Explicit Interface Implementations

Name Description
System_CAPS_pubinterfaceSystem_CAPS_privmethod ICollection.CopyTo(Array, Int32)

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.Add(Object)

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.Contains(Object)

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.IndexOf(Object)

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.Insert(Int32, Object)

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.Remove(Object)

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privproperty ICollection.IsSynchronized

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privproperty ICollection.SyncRoot

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privproperty IList.IsFixedSize

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privproperty IList.IsReadOnly

(Inherited from CollectionBase.)

System_CAPS_pubinterfaceSystem_CAPS_privproperty IList.Item[Int32]

(Inherited from CollectionBase.)

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