SecondaryZone: added override for Update property so stop the zone type to support updates.

This commit is contained in:
Shreyas Zare
2022-10-30 18:58:14 +05:30
parent 0eeb0ab59b
commit fcca68801a

View File

@@ -586,6 +586,12 @@ namespace DnsServerCore.Dns.Zones
#region properties
public override AuthZoneUpdate Update
{
get { return _update; }
set { throw new InvalidOperationException(); }
}
public DateTime Expiry
{ get { return _expiry; } }