diff --git a/DnsServerCore/Dns/Zones/StubZone.cs b/DnsServerCore/Dns/Zones/StubZone.cs index 76c11c1a..2d7a258d 100644 --- a/DnsServerCore/Dns/Zones/StubZone.cs +++ b/DnsServerCore/Dns/Zones/StubZone.cs @@ -479,6 +479,12 @@ namespace DnsServerCore.Dns.Zones set { throw new InvalidOperationException(); } } + public override AuthZoneUpdate Update + { + get { return _update; } + set { throw new InvalidOperationException(); } + } + public override bool IsActive { get { return !_disabled && !_isExpired; }