TrustPolicyStringCollection.OnInsert Method (Int32, Object)

 

Inserts an object at an index position in a collection.

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

Syntax

protected override void OnInsert(
    int index,
    object value
)
protected:
virtual void OnInsert(
    int index,
    Object^ value
) override
override OnInsert : 
        index:int *
        value:Object -> unit
Protected Overrides Sub OnInsert (
    index As Integer,
    value As Object
)

Parameters

  • index
    Type: System.Int32

    The index of the position to insert this object.

  • value
    Type: System.Object

    The String object to be inserted. This object is validated on insertion for non-null, and non-duplicate.

See Also

TrustPolicyStringCollection Class
System.Web.Security.SingleSignOn Namespace

Return to top