Introduction

Mollom for .NET is a library to access the Mollom anti-spam service from .NET applications. See http://mollom.com for more information on Mollom.

Contents


The released client API consists of three files:

  • JelleDruyts.Mollom.Client.dll: The .NET assembly you can reference in your own projects. This is the only required file.
  • JelleDruyts.Mollom.Client.xml: The IntelliSense information for the .NET assembly.
  • JelleDruyts.Mollom.Client.chm: The technical documentation for Mollom for .NET.

Getting Started


Basic usage looks as follows:

MollomClient client = new MollomClient(privateKey, publicKey);
ContentCheck result = client.CheckContent(postTitle, postBody, authorName, authorMail, authorUrl, authorIPAddress);
if (result.Classification == ContentClassification.Spam)
{
    // Handle spam here...
}

You can also download the source code, which includes a test console application and a unit test suite, for more extensive samples on how to use the client API.

Last edited May 18 2008 at 5:00 PM by jelled, version 4
Comments
No comments yet.

Updating...
© 2006-2009 Microsoft | About CodePlex | Privacy Statement | Terms of Use | Code of Conduct | CodePlex Blog | Version 2008.12.9.14291