Deletes all spam comments for a given 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 void DeleteSpamComments(
	Guid parentId,
	Guid userId,
	int entityType
)
Visual Basic
Public Overridable Sub DeleteSpamComments ( 
	parentId As Guid,
	userId As Guid,
	entityType As Integer
)
Visual C++
public:
virtual void DeleteSpamComments(
	Guid parentId, 
	Guid userId, 
	int entityType
)
F#
abstract DeleteSpamComments : 
        parentId : Guid * 
        userId : Guid * 
        entityType : int -> unit 
override DeleteSpamComments : 
        parentId : Guid * 
        userId : Guid * 
        entityType : int -> unit 

Parameters

parentId
Type: System..::..Guid
Parent ID.
userId
Type: System..::..Guid
User ID.
entityType
Type: System..::..Int32
Parent entity type.

Implements

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

See Also