Share via


CustomClaimCollection.OnSetComplete Method (Int32, Object, Object)

 

This API supports the product infrastructure and is not intended to be used directly from your code.

This method supports the AD FS infrastructure and is not intended to be used directly from your code. Performs additional custom processes after setting a value in the CustomClaimCollection 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

CustomClaimCollection Class
System.Web.Security.SingleSignOn Namespace

Return to top