DNS.Protocol.Response.Response C# (CSharp) Method

Response() public method

public Response ( ) : System
return System
        public Response()
        {
            this.header = new Header();
            this.questions = new List<Question>();
            this.answers = new List<IResourceRecord>();
            this.authority = new List<IResourceRecord>();
            this.additional = new List<IResourceRecord>();

            this.header.Response = true;
            this.header.Id = RANDOM.Next(UInt16.MaxValue);
        }

Same methods

Response::Response ( Header header, IList questions, IList answers, IList authority, IList additional ) : System
Response::Response ( IResponse response ) : System