Gets the discussion board topics.

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

Syntax

C#
protected virtual EntityCollection<SnDiscussionTopicEntity> GetTopics(
	Nullable<Guid> boardId,
	Nullable<Guid> groupId,
	string searchPhrase,
	IRelationPredicateBucket bucket,
	out int recordCount
)
Visual Basic
Protected Overridable Function GetTopics ( 
	boardId As Nullable(Of Guid),
	groupId As Nullable(Of Guid),
	searchPhrase As String,
	bucket As IRelationPredicateBucket,
	<OutAttribute> ByRef recordCount As Integer
) As EntityCollection(Of SnDiscussionTopicEntity)
Visual C++
protected:
virtual EntityCollection<SnDiscussionTopicEntity^>^ GetTopics(
	Nullable<Guid> boardId, 
	Nullable<Guid> groupId, 
	String^ searchPhrase, 
	IRelationPredicateBucket^ bucket, 
	[OutAttribute] int% recordCount
)
F#
abstract GetTopics : 
        boardId : Nullable<Guid> * 
        groupId : Nullable<Guid> * 
        searchPhrase : string * 
        bucket : IRelationPredicateBucket * 
        recordCount : int byref -> EntityCollection<SnDiscussionTopicEntity> 
override GetTopics : 
        boardId : Nullable<Guid> * 
        groupId : Nullable<Guid> * 
        searchPhrase : string * 
        bucket : IRelationPredicateBucket * 
        recordCount : int byref -> EntityCollection<SnDiscussionTopicEntity> 

Parameters

boardId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Board id.
groupId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Group id.
searchPhrase
Type: System..::..String
Search phrase
bucket
Type: IRelationPredicateBucket
Filter bucket
recordCount
Type: System..::..Int32%
Total number of elements

Return Value

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

See Also