From a156a969be53d92785d37ffd0ee66d4b756dc23e Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 11 Sep 2021 13:30:00 +0530 Subject: [PATCH] IDnsServer: added ApplicationName property and minor refactoring done. --- DnsApplicationCommon/IDnsServer.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/DnsApplicationCommon/IDnsServer.cs b/DnsApplicationCommon/IDnsServer.cs index 6db9e389..9d1161c9 100644 --- a/DnsApplicationCommon/IDnsServer.cs +++ b/DnsApplicationCommon/IDnsServer.cs @@ -49,15 +49,20 @@ namespace DnsApplicationCommon void WriteLog(Exception ex); /// - /// The primary domain name used by this DNS Server to identify itself. + /// The name of this installed application. /// - string ServerDomain { get; } + string ApplicationName { get; } /// /// The folder where this application is saved on the disk. Can be used to create temp files, read/write files, etc. for this application. /// string ApplicationFolder { get; } + /// + /// The primary domain name used by this DNS Server to identify itself. + /// + string ServerDomain { get; } + /// /// The DNS cache object which provides direct access to the DNS server cache. ///