Akismet.NET.Validator.SubmitSpam C# (CSharp) Метод

SubmitSpam() публичный Метод

This call is for submitting comments that weren't marked as spam but should've been.
public SubmitSpam ( Comment comment ) : void
comment Comment The input comment to be sent as spam.
Результат void
        public void SubmitSpam(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);
            }
        }