CacheRecordInfo: removed unused feature.

This commit is contained in:
Shreyas Zare
2023-08-26 12:31:50 +05:30
parent 892cb5a3ee
commit 528de20d2e

View File

@@ -36,7 +36,6 @@ namespace DnsServerCore.Dns.ResourceRecords
IReadOnlyList<DnsResourceRecord> _nsecRecords;
NetworkAddress _eDnsClientSubnet;
bool _conditionalForwardingClientSubnet; //not serialized
DateTime _lastUsedOn; //not serialized
#endregion
@@ -189,12 +188,6 @@ namespace DnsServerCore.Dns.ResourceRecords
set { _eDnsClientSubnet = value; }
}
public bool ConditionalForwardingClientSubnet
{
get { return _conditionalForwardingClientSubnet; }
set { _conditionalForwardingClientSubnet = value; }
}
public DateTime LastUsedOn
{
get { return _lastUsedOn; }