Gets unapproved comments below a given entity

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

Syntax

C#
IEnumerable<IComment> GetUnapprovedComments(
	string entityID,
	bool recurseThroughEntities
)
Visual Basic
Function GetUnapprovedComments ( _
	entityID As String, _
	recurseThroughEntities As Boolean _
) As IEnumerable(Of IComment)
Visual C++
IEnumerable<IComment^>^ GetUnapprovedComments(
	String^ entityID, 
	bool recurseThroughEntities
)

Parameters

entityID
Type: System..::..String
the entity for wich you want unapproved comments
recurseThroughEntities
Type: System..::..Boolean
if true, grabs all unapproved comments of all child entities also

Return Value

See Also