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

DnsServerResponse() private method

private DnsServerResponse ( bool connectionOk, RCODE rcode, ArrayList answers, ArrayList authoritiveAnswers, ArrayList additionalAnswers ) : System
connectionOk bool
rcode RCODE
answers System.Collections.ArrayList
authoritiveAnswers System.Collections.ArrayList
additionalAnswers System.Collections.ArrayList
return System
        internal DnsServerResponse(bool connectionOk,RCODE rcode,ArrayList answers,ArrayList authoritiveAnswers,ArrayList additionalAnswers)
        {
            m_Success             = connectionOk;
            m_RCODE               = rcode;
            m_pAnswers            = answers;
            m_pAuthoritiveAnswers = authoritiveAnswers;
            m_pAdditionalAnswers  = additionalAnswers;
        }