LumiSoft.Net.Dns.Client.A_Record.A_Record C# (CSharp) Method

A_Record() public method

Default constructor.
public A_Record ( string IP, int ttl ) : System
IP string IP address.
ttl int TTL value.
return System
        public A_Record(string IP,int ttl)
            : base(QTYPE.A,ttl)
        {
            m_IP = IP;
        }
A_Record