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

DnsCacheEntry() public method

Default constructor.
public DnsCacheEntry ( DnsServerResponse answers, System.DateTime addTime ) : System
answers DnsServerResponse Dns answers.
addTime System.DateTime Entry add time.
return System
        public DnsCacheEntry(DnsServerResponse answers,DateTime addTime)
        {
            m_pResponse = answers;
            m_Time      = addTime;
        }
DnsCacheEntry