using System; /* 3.3.6. MG RDATA format (EXPERIMENTAL) +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ / MGMNAME / / / +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ where: MGMNAME A which specifies a mailbox which is a member of the mail group specified by the domain name. MG records cause no additional section processing. */ namespace Heijden.DNS { public class RecordMG : Record { public string MGMNAME; public RecordMG(RecordReader rr) { MGMNAME = rr.ReadDomainName(); } public override string ToString() { return MGMNAME; } } }