Retrieves a collection of notes.

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

Syntax

C#
EntityCollection<SnNoteEntity> GetNotes(
	Nullable<Guid> languageId,
	Guid userId,
	Guid groupId,
	Guid wallOwnerId,
	int pageNumber,
	int pageSize,
	out int recordCount
)
Visual Basic
Function GetNotes ( 
	languageId As Nullable(Of Guid),
	userId As Guid,
	groupId As Guid,
	wallOwnerId As Guid,
	pageNumber As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As EntityCollection(Of SnNoteEntity)
Visual C++
EntityCollection<SnNoteEntity^>^ GetNotes(
	Nullable<Guid> languageId, 
	Guid userId, 
	Guid groupId, 
	Guid wallOwnerId, 
	int pageNumber, 
	int pageSize, 
	[OutAttribute] int% recordCount
)
F#
abstract GetNotes : 
        languageId : Nullable<Guid> * 
        userId : Guid * 
        groupId : Guid * 
        wallOwnerId : Guid * 
        pageNumber : int * 
        pageSize : int * 
        recordCount : int byref -> EntityCollection<SnNoteEntity> 

Parameters

languageId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Lanuage Id.
userId
Type: System..::..Guid
User id for which to retrieve notes.
groupId
Type: System..::..Guid
Group id for which to retrieve notes.
wallOwnerId
Type: System..::..Guid
Wall owner Id - when set, shows only notes sent to this user.
pageNumber
Type: System..::..Int32
Page number.
pageSize
Type: System..::..Int32
Page size.
recordCount
Type: System..::..Int32%
Count of the records retrieved.

Return Value

Type: EntityCollection<(Of <(<'SnNoteEntity>)>)>
Collection of notes for a particular user or group.

See Also