TrustPolicyStringCollection Class
This class supports the AD FS infrastructure and is not meant to be used directly from your code. A collection of strings used for a trust policy.
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.TrustPolicyStringCollection
Syntax
[ComVisibleAttribute(true)]
public class TrustPolicyStringCollection : CollectionBase
[ComVisibleAttribute(true)]
public ref class TrustPolicyStringCollection : CollectionBase
[<ComVisibleAttribute(true)>]
type TrustPolicyStringCollection =
class
inherit CollectionBase
end
<ComVisibleAttribute(True)>
Public Class TrustPolicyStringCollection
Inherits CollectionBase
Constructors
Name | Description | |
---|---|---|
TrustPolicyStringCollection() | Initializes a new instance of the TrustPolicyStringCollection class. |
Properties
Name | Description | |
---|---|---|
Capacity | (Inherited from CollectionBase.) |
|
Count | (Inherited from CollectionBase.) |
|
InnerList | (Inherited from CollectionBase.) |
|
Item[Int32] | Gets or sets the string at the specified index. |
|
List | (Inherited from CollectionBase.) |
Methods
Name | Description | |
---|---|---|
Add(String) | Adds an item to the TrustPolicyStringCollection. |
|
Clear() | (Inherited from CollectionBase.) |
|
Contains(String) | Indicates whether the collection contains a specified string. This method is a strongly typed implementation of Contains. |
|
CopyTo(String[], Int32) | Copies a specified string to a specified location in the collection. This method is a strongly typed implementation of CopyTo(T[], Int32). |
|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
GetEnumerator() | (Inherited from CollectionBase.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
IndexOf(String) | Returns the index value in the collection for a specified string. This method is a strongly typed implementation of IndexOf(T). |
|
Insert(Int32, String) | Inserts an object into the TrustPolicyStringCollection at the specified index. |
|
MemberwiseClone() | (Inherited from Object.) |
|
OnClear() | (Inherited from CollectionBase.) |
|
OnClearComplete() | (Inherited from CollectionBase.) |
|
OnInsert(Int32, Object) | Inserts an object at an index position in a collection.(Overrides CollectionBase.OnInsert(Int32, Object).) |
|
OnInsertComplete(Int32, Object) | (Inherited from CollectionBase.) |
|
OnRemove(Int32, Object) | (Inherited from CollectionBase.) |
|
OnRemoveComplete(Int32, Object) | (Inherited from CollectionBase.) |
|
OnSet(Int32, Object, Object) | Updates an object at an index position in a collection.(Overrides CollectionBase.OnSet(Int32, Object, Object).) |
|
OnSetComplete(Int32, Object, Object) | (Inherited from CollectionBase.) |
|
OnValidate(Object) | Validates an object.(Overrides CollectionBase.OnValidate(Object).) |
|
Remove(String) | Removes a string at a specified index from the collection. This method is a strongly typed implementation of Remove. |
|
RemoveAt(Int32) | (Inherited from CollectionBase.) |
|
ToString() | (Inherited from Object.) |
Explicit Interface Implementations
Name | Description | |
---|---|---|
ICollection.CopyTo(Array, Int32) | (Inherited from CollectionBase.) |
|
IList.Add(Object) | (Inherited from CollectionBase.) |
|
IList.Contains(Object) | (Inherited from CollectionBase.) |
|
IList.IndexOf(Object) | (Inherited from CollectionBase.) |
|
IList.Insert(Int32, Object) | (Inherited from CollectionBase.) |
|
IList.Remove(Object) | (Inherited from CollectionBase.) |
|
ICollection.IsSynchronized | (Inherited from CollectionBase.) |
|
ICollection.SyncRoot | (Inherited from CollectionBase.) |
|
IList.IsFixedSize | (Inherited from CollectionBase.) |
|
IList.IsReadOnly | (Inherited from CollectionBase.) |
|
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