top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is application domain?

+1 vote
264 views
What is application domain?
posted Mar 21, 2017 by Sunil

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

0 votes

An application domain is a mechanism (similar to a process in an operating system) used within the Common Language Infrastructure (CLI) to isolate executed software applications from one another so that they do not affect each other.

answer Mar 21, 2017 by Manikandan J
0 votes

An Application Domain is a logical container for a set of assemblies in which an executable is hosted.Application Domains, each of which is hosting a .NET executable. The first appdomain created when the CLR is initialized is called the default AppDomain and this default one is destroyed when the Windows process is terminated.

 An AppDomain can be independently secured.
 An AppDomain can be unloaded.
 Independently configured.
 No mutual intervention by multiple appdomains.
 Performance

answer Mar 21, 2017 by Shweta Singh
...