Gets a number of comments for give parent entity type and id.

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

Syntax

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

Parameters

parentId
Type: System..::..Guid
Parent id.
entityType
Type: System..::..Int32
Parent entity type.

Return Value

Type: Int32
Number of comments that satisfy the given criteria.

Implements

ICommentBLL..::..GetCommentCount(Guid, Int32)

See Also