WebServiceAppsApi: updated api to support new IDnsPostProcessor interface.

This commit is contained in:
Shreyas Zare
2022-11-12 15:13:22 +05:30
parent 39e757c31a
commit 111bf71f0c

View File

@@ -312,6 +312,9 @@ namespace DnsServerCore
jsonWriter.WritePropertyName("isQueryLogger");
jsonWriter.WriteValue(dnsApp.Value is IDnsQueryLogger);
jsonWriter.WritePropertyName("isPostProcessor");
jsonWriter.WriteValue(dnsApp.Value is IDnsPostProcessor);
jsonWriter.WriteEndObject();
}