Gets all users for a newsletter.

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

Syntax

C#
EntityCollection<AspnetUsersEntity> GetNewsletterUsers(
	bool allUsers,
	Guid[] roles
)
Visual Basic
Function GetNewsletterUsers ( 
	allUsers As Boolean,
	roles As Guid()
) As EntityCollection(Of AspnetUsersEntity)
Visual C++
EntityCollection<AspnetUsersEntity^>^ GetNewsletterUsers(
	bool allUsers, 
	array<Guid>^ roles
)
F#
abstract GetNewsletterUsers : 
        allUsers : bool * 
        roles : Guid[] -> EntityCollection<AspnetUsersEntity> 

Parameters

allUsers
Type: System..::..Boolean
Set to true if all users are to be fetched.
roles
Type: array<System..::..Guid>[]()[][]
Roles which are to be fetched.

Return Value

Type: EntityCollection<(Of <(<'AspnetUsersEntity>)>)>
Newsletter users.

See Also