Checks AkismetComment object against Akismet database.

Namespace: MonoSoftware.Web.AntiSpam.AntiSpamProviders.Akismet
Assembly: MonoSoftware.Web (in MonoSoftware.Web.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public bool CommentCheck(
	AkismetComment comment
)
Visual Basic
Public Function CommentCheck ( 
	comment As AkismetComment
) As Boolean
Visual C++
public:
bool CommentCheck(
	AkismetComment^ comment
)
F#
member CommentCheck : 
        comment : AkismetComment -> bool 

Parameters

comment
Type: MonoSoftware.Web.AntiSpam.AntiSpamProviders.Akismet..::..AkismetComment
AkismetComment object to check.

Return Value

Type: Boolean
'True' if spam, 'False' if not spam.

See Also