LumiSoft.Net.Dns.Client.A_Record.A_Record C# (CSharp) 메소드

A_Record() 공개 메소드

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