Ejemplo n.º 1
0
 internal AdditionalRecord(Pointer pointer) : base(pointer)
 {
 }
Ejemplo n.º 2
0
 internal NameServer(Pointer pointer) : base(pointer)
 {
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Constructs an MX record by reading bytes from a return message
 /// </summary>
 /// <param name="pointer">A logical pointer to the bytes holding the record</param>
 internal MXRecord(Pointer pointer)
 {
     _Preference = pointer.ReadShort();
     _DomainName = pointer.ReadDomain();
 }
Ejemplo n.º 4
0
 internal Answer(Pointer pointer) : base(pointer)
 {
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Constructs a NS record by reading bytes from a return message
 /// </summary>
 /// <param name="pointer">A logical pointer to the bytes holding the record</param>
 internal NSRecord(Pointer pointer)
 {
     _DomainName = pointer.ReadDomain();
 }