LumiSoft.Net.Dns.Client.A_Record.A_Record C# (CSharp) Méthode

A_Record() public méthode

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