namespace DnsClient.Protocol
{
///
/// A not representing any specifc resource record.
/// Used if unsupported s are found in the result.
///
///
public class EmptyRecord : DnsResourceRecord
{
///
/// Initializes a new instance of the class.
///
/// The information.
/// If is null.
public EmptyRecord(ResourceRecordInfo info) : base(info)
{
}
private protected override string RecordToString()
{
return string.Empty;
}
}
}