Share via


IdentityFactoryProvider<T>.OnDispose Property

 

Gets or sets a delegate assigned to this property will be invoked when the related method is called.

Namespace:   Microsoft.AspNet.Identity.Owin
Assembly:  Microsoft.AspNet.Identity.Owin (in Microsoft.AspNet.Identity.Owin.dll)

Syntax

public Action<IdentityFactoryOptions<T>, T> OnDispose { get; set; }
public:
property Action<IdentityFactoryOptions<T>^, T>^ OnDispose {
    Action<IdentityFactoryOptions<T>^, T>^ get();
    void set(Action<IdentityFactoryOptions<T>^, T>^ value);
}
member OnDispose : Action<IdentityFactoryOptions<'T>, 'T> with get, set
Public Property OnDispose As Action(Of IdentityFactoryOptions(Of T), T)

Property Value

Type: System.Action<IdentityFactoryOptions<T>, T>

The delegate assigned to this property will be invoked when the related method is called.

See Also

IdentityFactoryProvider<T> Class
Microsoft.AspNet.Identity.Owin Namespace
ASP.NET Identity

Return to top