GroupClaimCollection.OnSetComplete Method (Int32, Object, Object)

 

Performs additional custom processes after setting a value in the GroupClaimCollection instance.

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 oldValue can be found.

  • oldValue
    Type: System.Object

    The value to replace with newValue.

  • newValue
    Type: System.Object

    The new value of the element at index.

See Also

GroupClaimCollection Class
System.Web.Security.SingleSignOn Namespace

Return to top