Gets the http context cached aspnet user entity (Note: User profile is cached per request).

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
IList<AspnetUsersEntity> GetCachedUsers(
	IEnumerable<Guid> userIds
)
Visual Basic
Function GetCachedUsers ( 
	userIds As IEnumerable(Of Guid)
) As IList(Of AspnetUsersEntity)
Visual C++
IList<AspnetUsersEntity^>^ GetCachedUsers(
	IEnumerable<Guid>^ userIds
)
F#
abstract GetCachedUsers : 
        userIds : IEnumerable<Guid> -> IList<AspnetUsersEntity> 

Parameters

userIds
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'Guid>)>)>
User ids to get

Return Value

Type: IList<(Of <(<'AspnetUsersEntity>)>)>
List of aspnet user entities

See Also