AppDomain.IsHomogenous Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether the current application ___domain has a set of permissions that is granted to all assemblies that are loaded into the application ___domain.
public:
property bool IsHomogenous { bool get(); };
public bool IsHomogenous { get; }
member this.IsHomogenous : bool
Public ReadOnly Property IsHomogenous As Boolean
Property Value
true
if the current application ___domain has a homogenous set of permissions; otherwise, false
.
Remarks
This property returns true
for sandboxed application domains that were created by using the AppDomain.CreateDomain(String, Evidence, AppDomainSetup, PermissionSet, StrongName[]) method overload. Sandboxed application domains have a homogenous set of permissions; that is, the same set of permissions is granted to all partially trusted assemblies that are loaded into the application ___domain. A sandboxed application ___domain optionally has a list of strong-named assemblies that are exempt from this permission set, and instead run with full trust.
Fully trusted code can use the PermissionSet property to determine the homogenous grant set of a sandboxed application ___domain.
This property also returns true
for the default application ___domain of a desktop application, because that application ___domain grants full trust to all assemblies.