Gets all discussion board topics.

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

Syntax

C#
public virtual EntityCollection<SnDiscussionTopicEntity> GetTopics(
	Guid boardId,
	int pageSize,
	int pageIndex,
	out int recordCount
)
Visual Basic
Public Overridable Function GetTopics ( 
	boardId As Guid,
	pageSize As Integer,
	pageIndex As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As EntityCollection(Of SnDiscussionTopicEntity)
Visual C++
public:
virtual EntityCollection<SnDiscussionTopicEntity^>^ GetTopics(
	Guid boardId, 
	int pageSize, 
	int pageIndex, 
	[OutAttribute] int% recordCount
)
F#
abstract GetTopics : 
        boardId : Guid * 
        pageSize : int * 
        pageIndex : int * 
        recordCount : int byref -> EntityCollection<SnDiscussionTopicEntity> 
override GetTopics : 
        boardId : Guid * 
        pageSize : int * 
        pageIndex : int * 
        recordCount : int byref -> EntityCollection<SnDiscussionTopicEntity> 

Parameters

boardId
Type: System..::..Guid
Discussion board id
pageSize
Type: System..::..Int32
Page size
pageIndex
Type: System..::..Int32
Page index
recordCount
Type: System..::..Int32%
Total number of elements

Return Value

Type: EntityCollection<(Of <(<'SnDiscussionTopicEntity>)>)>
Collection of discussion board topic elements

Implements

IDiscussionBLL..::..GetTopics(Guid, Int32, Int32, Int32%)

See Also