Gets topic messages.

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

Syntax

C#
EntityCollection<SnDiscussionMessageEntity> GetMessages(
	Guid topicId,
	int pageSize,
	int pageIndex,
	out int recordCount
)
Visual Basic
Function GetMessages ( 
	topicId As Guid,
	pageSize As Integer,
	pageIndex As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As EntityCollection(Of SnDiscussionMessageEntity)
Visual C++
EntityCollection<SnDiscussionMessageEntity^>^ GetMessages(
	Guid topicId, 
	int pageSize, 
	int pageIndex, 
	[OutAttribute] int% recordCount
)
F#
abstract GetMessages : 
        topicId : Guid * 
        pageSize : int * 
        pageIndex : int * 
        recordCount : int byref -> EntityCollection<SnDiscussionMessageEntity> 

Parameters

topicId
Type: System..::..Guid
Topic Id
pageSize
Type: System..::..Int32
Page size
pageIndex
Type: System..::..Int32
Page index for paging
recordCount
Type: System..::..Int32%
Count of the records retrieved

Return Value

Type: EntityCollection<(Of <(<'SnDiscussionMessageEntity>)>)>
Collection of topic messages

See Also