UserManagerExtensions.Find<TUser> Method (UserManager<TUser>, UserLoginInfo)

Sync extension

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Find(Of TUser As {Class, IUser}) ( _
    manager As UserManager(Of TUser), _
    login As UserLoginInfo _
) As TUser
'Usage
Dim manager As UserManager(Of TUser)
Dim login As UserLoginInfo 
Dim returnValue As TUser

returnValue = manager.Find(login)
public static TUser Find<TUser>(
    this UserManager<TUser> manager,
    UserLoginInfo login
)
where TUser : class, IUser
[ExtensionAttribute]
public:
generic<typename TUser>
where TUser : ref class, IUser 
static TUser Find(
    UserManager<TUser>^ manager, 
    UserLoginInfo^ login
)
static member Find : 
        manager:UserManager<'TUser> * 
        login:UserLoginInfo -> 'TUser  when 'TUser : not struct and IUser
JScript does not support generic types and methods.

Type Parameters

  • TUser

Parameters

Return Value

Type: TUser

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type UserManager<TUser>. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.111) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.111).

See Also

Reference

UserManagerExtensions Class

Find Overload

Microsoft.AspNet.Identity Namespace