IdentityUser Constructor
Initializes a new instance of the IdentityUser class.
Namespace: Microsoft.AspNet.Identity.EntityFramework
Assembly: Microsoft.AspNet.Identity.EntityFramework (in Microsoft.AspNet.Identity.EntityFramework.dll)
Overload List
Name | Description | |
---|---|---|
![]() |
IdentityUser() | Initializes a new instance of the IdentityUser class. |
![]() |
IdentityUser(String) | Initializes a new instance of the IdentityUser class using the specified username. |
See Also
IdentityUser Class
Microsoft.AspNet.Identity.EntityFramework Namespace
ASP.NET Identity
Return to top
IdentityUser Constructor ()
Initializes a new instance of the IdentityUser class.
Syntax
public IdentityUser()
public:
IdentityUser()
new : unit -> IdentityUser
Public Sub New
See Also
Return to top
IdentityUser Constructor (String)
Initializes a new instance of the IdentityUser class using the specified username.
Syntax
public IdentityUser(
string userName
)
public:
IdentityUser(
String^ userName
)
new :
userName:string -> IdentityUser
Public Sub New (
userName As String
)
Parameters
userName
Type: System.StringThe username.
See Also
Return to top