Retrieves comments for the parent wall note id in non-paged scenarios.

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

Syntax

C#
public virtual List<SnCommentDTO> GetComments(
	Guid blogId,
	Guid parentId,
	Guid userId,
	int entityType,
	bool isModerator,
	int pageSize
)
Visual Basic
Public Overridable Function GetComments ( 
	blogId As Guid,
	parentId As Guid,
	userId As Guid,
	entityType As Integer,
	isModerator As Boolean,
	pageSize As Integer
) As List(Of SnCommentDTO)
Visual C++
public:
virtual List<SnCommentDTO^>^ GetComments(
	Guid blogId, 
	Guid parentId, 
	Guid userId, 
	int entityType, 
	bool isModerator, 
	int pageSize
)
F#
abstract GetComments : 
        blogId : Guid * 
        parentId : Guid * 
        userId : Guid * 
        entityType : int * 
        isModerator : bool * 
        pageSize : int -> List<SnCommentDTO> 
override GetComments : 
        blogId : Guid * 
        parentId : Guid * 
        userId : Guid * 
        entityType : int * 
        isModerator : bool * 
        pageSize : int -> List<SnCommentDTO> 

Parameters

blogId
Type: System..::..Guid
Blog id
parentId
Type: System..::..Guid
Commented entity ID. If empty, all comments for a user with userId will be returned
userId
Type: System..::..Guid
User ID
entityType
Type: System..::..Int32
Commented entity type
isModerator
Type: System..::..Boolean
Is Moderator
pageSize
Type: System..::..Int32
Page size

Return Value

Type: List<(Of <(<'SnCommentDTO>)>)>
Collection of comment items

Implements

ICommentBLL..::..GetComments(Guid, Guid, Guid, Int32, Boolean, Int32)

See Also