Akismet.NET.Validator.SubmitHam C# (CSharp) Method

SubmitHam() public method

This call is intended for the marking of false positives, things that were incorrectly marked as spam.
public SubmitHam ( Comment comment ) : void
comment Comment The input comment to be sent as ham.
return void
        public void SubmitHam(Comment comment)
        {
            // prepare pars for the request
            NameValueCollection pars = PreparePars(comment);
            if (null != pars)
            {
                PostRequest(String.Format("http://{0}.rest.akismet.com/1.1/submit-spam", m_key), pars);
            }
        }