From 2f125240e18eed8f90b5be21c4261e81854ad118 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 11 Sep 2021 12:18:33 +0530 Subject: [PATCH] IDnsServer: added comments. --- DnsApplicationCommon/IDnsServer.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/DnsApplicationCommon/IDnsServer.cs b/DnsApplicationCommon/IDnsServer.cs index 50943a55..6db9e389 100644 --- a/DnsApplicationCommon/IDnsServer.cs +++ b/DnsApplicationCommon/IDnsServer.cs @@ -24,10 +24,13 @@ using TechnitiumLibrary.Net.Proxy; namespace DnsApplicationCommon { + /// + /// Provides an interface to access the internal DNS Server core. + /// public interface IDnsServer { /// - /// Allows querying the DNS server directly. This call supports recursion even if its not enabled in the DNS server configuration. The request and its response are not counted in any stats or logged.. + /// Allows querying the DNS server core directly. This call supports recursion even if its not enabled in the DNS server configuration. The request wont be routed to any of the installed DNS Apps except for processing APP records. The request and its response are not counted in any stats or logged. /// /// The question record containing the details to query. /// The DNS response for the DNS query or null if the request timed out.