Subtext.Akismet.Comment.Comment C# (CSharp) 메소드

Comment() 공개 메소드

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.
리턴 System
        public Comment(IPAddress authorIpAddress, string authorUserAgent)
        {
            this.ipAddress = authorIpAddress;
            this.userAgent = authorUserAgent;
        }
Comment