Subtext.Akismet.Comment.Comment C# (CSharp) Méthode

Comment() public méthode

Initializes a new instance of the Comment class.
public Comment ( IPAddress authorIpAddress, string authorUserAgent ) : System
authorIpAddress System.Net.IPAddress The author ip address.
authorUserAgent string The author user agent.
Résultat System
        public Comment(IPAddress authorIpAddress, string authorUserAgent)
        {
            this.ipAddress = authorIpAddress;
            this.userAgent = authorUserAgent;
        }
Comment