Share via


AccountStoreCollection.OnSetComplete Method (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.

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

Syntax

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

Parameters

  • index
    Type: System.Int32

    The zero-based index at which the object value specified by the oldValue parameter can be found.

  • oldValue
    Type: System.Object

    The object value to replace with the object specified by the newValue parameter.

  • newValue
    Type: System.Object

    The new object value to place at the index specified by the index parameter.

See Also

AccountStoreCollection Class
System.Web.Security.SingleSignOn Namespace

Return to top