Get topic rating count.

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

Syntax

C#
public virtual decimal GetTopicRatingCount(
	Guid topicId,
	out int totalCount
)
Visual Basic
Public Overridable Function GetTopicRatingCount ( 
	topicId As Guid,
	<OutAttribute> ByRef totalCount As Integer
) As Decimal
Visual C++
public:
virtual Decimal GetTopicRatingCount(
	Guid topicId, 
	[OutAttribute] int% totalCount
)
F#
abstract GetTopicRatingCount : 
        topicId : Guid * 
        totalCount : int byref -> decimal 
override GetTopicRatingCount : 
        topicId : Guid * 
        totalCount : int byref -> decimal 

Parameters

topicId
Type: System..::..Guid
Topic Id
totalCount
Type: System..::..Int32%
Total rating count

Return Value

Type: Decimal
Total rating

Implements

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

See Also