Retrieves a list of groups matching the criteria specified via method parameters.

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

Syntax

C#
List<SnGroupDTO> GetGroups(
	Nullable<Guid> languageId,
	Guid userId,
	string category,
	Guid categoryId,
	string searchValue,
	bool useFullTextIndex,
	int pageNumber,
	int pageSize,
	out int recordCount
)
Visual Basic
Function GetGroups ( 
	languageId As Nullable(Of Guid),
	userId As Guid,
	category As String,
	categoryId As Guid,
	searchValue As String,
	useFullTextIndex As Boolean,
	pageNumber As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As List(Of SnGroupDTO)
Visual C++
List<SnGroupDTO^>^ GetGroups(
	Nullable<Guid> languageId, 
	Guid userId, 
	String^ category, 
	Guid categoryId, 
	String^ searchValue, 
	bool useFullTextIndex, 
	int pageNumber, 
	int pageSize, 
	[OutAttribute] int% recordCount
)
F#
abstract GetGroups : 
        languageId : Nullable<Guid> * 
        userId : Guid * 
        category : string * 
        categoryId : Guid * 
        searchValue : string * 
        useFullTextIndex : bool * 
        pageNumber : int * 
        pageSize : int * 
        recordCount : int byref -> List<SnGroupDTO> 

Parameters

languageId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Language Id.
userId
Type: System..::..Guid
User id.
category
Type: System..::..String
Category name.
categoryId
Type: System..::..Guid
Category Id
searchValue
Type: System..::..String
Search value for performing name and description search.
useFullTextIndex
Type: System..::..Boolean
Indicates if full text search is to be used.
pageNumber
Type: System..::..Int32
Page number.
pageSize
Type: System..::..Int32
Page size.
recordCount
Type: System..::..Int32%
Record count.

Return Value

Type: List<(Of <(<'SnGroupDTO>)>)>
List of groups.

See Also