Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Custom action that is performed when an entry is set at an index in the CertInfoCollection.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
protected override void OnSetComplete(
int i,
object stale,
object fresh
)
protected:
virtual void OnSetComplete(
int i,
Object^ stale,
Object^ fresh
) override
override OnSetComplete :
i:int *
stale:Object *
fresh:Object -> unit
Protected Overrides Sub OnSetComplete (
i As Integer,
stale As Object,
fresh As Object
)
Parameters
i
Type: System.Int32The zero-based index at which old value (stale) can be found.
stale
Type: System.ObjectThe value to replace with fresh.
fresh
Type: System.ObjectThe new value of the element at index (i).
See Also
CertInfoCollection Class
System.Web.Security.SingleSignOn Namespace
Return to top