IUser Interface

 

Defines the properties for a user.

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

Syntax

public interface IUser : IUser<string>
public interface class IUser : IUser<String^>
type IUser = 
    interface
        interface IUser<string>
    end
Public Interface IUser
    Inherits IUser(Of String)

Properties

Name Description
System_CAPS_pubproperty Id

The unique identifier for the user.(Inherited from IUser<TKey>.)

System_CAPS_pubproperty UserName

The unique name for the user.(Inherited from IUser<TKey>.)

See Also

Microsoft.AspNet.Identity Namespace
ASP.NET Identity

Return to top