retuns an IPaagedEntityChildrenList object used for retrieving comments from the datastore

Namespace: Cartella.Interfaces
Assembly: CartellaData (in CartellaData.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
IPaginatedList<IComment, int> GetSubComments(
	IComment parentComment,
	bool recursive
)
Visual Basic
Function GetSubComments ( _
	parentComment As IComment, _
	recursive As Boolean _
) As IPaginatedList(Of IComment, Integer)
Visual C++
IPaginatedList<IComment^, int>^ GetSubComments(
	IComment^ parentComment, 
	bool recursive
)

Parameters

parentComment
Type: Cartella.Interfaces..::..IComment
the parent comment
recursive
Type: System..::..Boolean
if true, will recurse throgh child comments else will only grab first level comments

Return Value

See Also