---
title: "What is an application domain?"  
description: "What is an application domain?"  
author: "Amit Singh"  
published: 2011-03-29  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/718/what-is-an-application-domain  
category: ".net"  
tags: [".net"]  
reading_time: 1 minute  

---

# What is an application domain?

Application domain is the boundary within which an application runs. A process can contain multiple application domains. Application domains provide an isolated environment to applications that is similar to the isolation provided by processes. An application running inside one application domain cannot directly access the code running inside another application domain. To access the code running in another application domain, an application needs to use a proxy.

## Answers

### Answer by Amit Singh

Application domain is the boundary within which an application runs. A process can contain multiple application domains. Application domains provide an isolated environment to applications that is similar to the isolation provided by processes. An application running inside one application domain cannot directly access the code running inside another application domain. To access the code running in another application domain, an application needs to use a proxy.


---

Original Source: https://www.mindstick.com/interview/718/what-is-an-application-domain

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
