Share via


IdentityFactoryProvider<T>.OnCreate 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 Func<IdentityFactoryOptions<T>, IOwinContext, T> OnCreate { get; set; }
public:
property Func<IdentityFactoryOptions<T>^, IOwinContext^, T>^ OnCreate {
    Func<IdentityFactoryOptions<T>^, IOwinContext^, T>^ get();
    void set(Func<IdentityFactoryOptions<T>^, IOwinContext^, T>^ value);
}
member OnCreate : Func<IdentityFactoryOptions<'T>, IOwinContext, 'T> with get, set
Public Property OnCreate As Func(Of IdentityFactoryOptions(Of T), IOwinContext, T)

Property Value

Type: System.Func<IdentityFactoryOptions<T>, IOwinContext, 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