diff --git a/DnsServerCore/Dns/Zones/SecondaryZone.cs b/DnsServerCore/Dns/Zones/SecondaryZone.cs index d69027bd..71fc0f3a 100644 --- a/DnsServerCore/Dns/Zones/SecondaryZone.cs +++ b/DnsServerCore/Dns/Zones/SecondaryZone.cs @@ -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; } }