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

HINFO_Record() public méthode

Default constructor.
public HINFO_Record ( string cpu, string os, int ttl ) : System
cpu string Host CPU.
os string Host OS.
ttl int TTL value.
Résultat System
        public HINFO_Record(string cpu,string os,int ttl)
            : base(QTYPE.HINFO,ttl)
        {
            m_CPU = cpu;
            m_OS  = os;
        }
HINFO_Record