Gets the message count for the discussion topic.

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

Syntax

C#
public virtual int GetMessageCountForTopic(
	Guid topicId,
	Guid boardId
)
Visual Basic
Public Overridable Function GetMessageCountForTopic ( 
	topicId As Guid,
	boardId As Guid
) As Integer
Visual C++
public:
virtual int GetMessageCountForTopic(
	Guid topicId, 
	Guid boardId
)
F#
abstract GetMessageCountForTopic : 
        topicId : Guid * 
        boardId : Guid -> int 
override GetMessageCountForTopic : 
        topicId : Guid * 
        boardId : Guid -> int 

Parameters

topicId
Type: System..::..Guid
Topic Id
boardId
Type: System..::..Guid
Board Id

Return Value

Type: Int32
Times the topic is replied

Implements

IDiscussionBLL..::..GetMessageCountForTopic(Guid, Guid)

See Also