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

HINFO_Record() public method

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