mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2026-02-22 15:57:10 +00:00
DnsApplicationManager: code refactoring done.
This commit is contained in:
@@ -115,11 +115,11 @@ namespace DnsServerCore.Dns.Applications
|
||||
|
||||
public void UnloadAllApplications()
|
||||
{
|
||||
foreach (DnsApplication _application in _applications.Values)
|
||||
foreach (KeyValuePair<string, DnsApplication> application in _applications)
|
||||
{
|
||||
try
|
||||
{
|
||||
_application.Dispose();
|
||||
application.Value.Dispose();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user