Click or drag to resize
ApplicationUserStoreTUserGetLoginsAsync Method
Retrieves the associated logins for the specified .

Namespace: Kentico.Membership
Assembly: Kentico.Membership (in Kentico.Membership.dll) Version: 13.0.131
Syntax
C#
public Task<IList<UserLoginInfo>> GetLoginsAsync(
	TUser user,
	CancellationToken cancellationToken
)

Parameters

user
Type: TUser
The user whose associated logins to retrieve.
cancellationToken
Type: System.ThreadingCancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.

Return Value

Type: TaskIListUserLoginInfo
The TaskTResult for the asynchronous operation, containing a list of UserLoginInfo for the specified user, if any.

Implements

IUserLoginStore.GetLoginsAsync(UTP, CancellationToken)
Exceptions
ExceptionCondition
ArgumentNullExceptionuser is null.
See Also