AppDomainSetup Class
Represents assembly binding information that can be added to an instance of AppDomain.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
The AppDomainSetup type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() | AppDomainSetup() | Initializes a new instance of the AppDomainSetup class. |
![]() | AppDomainSetup(ActivationArguments) | Initializes a new instance of the AppDomainSetup class with the specified activation arguments required for manifest-based activation of an application domain. |
![]() | AppDomainSetup(ActivationContext) | Initializes a new instance of the AppDomainSetup class with the specified activation context to use for manifest-based activation of an application domain. |
| Name | Description | |
|---|---|---|
![]() | ActivationArguments | Gets or sets data about the activation of an application domain. |
![]() | AppDomainInitializer | Gets or sets the AppDomainInitializer delegate, which represents a callback method that is invoked when the application domain is initialized. |
![]() | AppDomainInitializerArguments | Gets or sets the arguments passed to the callback method represented by the AppDomainInitializer delegate. The callback method is invoked when the application domain is initialized. |
![]() | AppDomainManagerAssembly | Gets or sets the display name of the assembly that provides the type of the application domain manager for application domains created using this AppDomainSetup object. |
![]() | AppDomainManagerType | Gets or sets the full name of the type that provides the application domain manager for application domains created using this AppDomainSetup object. |
![]() | ApplicationBase | Gets or sets the name of the directory containing the application. |
![]() | ApplicationName | Gets or sets the name of the application. |
![]() | ApplicationTrust | Gets or sets an object containing security and trust information. |
![]() | CachePath | Gets or sets the name of an area specific to the application where files are shadow copied. |
![]() | ConfigurationFile | Gets or sets the name of the configuration file for an application domain. |
![]() | DisallowApplicationBaseProbing | Specifies whether the application base path and private binary path are probed when searching for assemblies to load. |
![]() | DisallowBindingRedirects | Gets or sets a value that indicates whether an application domain allows assembly binding redirection. |
![]() | DisallowCodeDownload | Gets or sets a value that indicates whether HTTP download of assemblies is allowed for an application domain. |
![]() | DisallowPublisherPolicy | Gets or sets a value that indicates whether the <publisherPolicy> section of the configuration file is applied to an application domain. |
![]() | DynamicBase | Gets or sets the base directory where the directory for dynamically generated files is located. |
![]() | LicenseFile | Gets or sets the location of the license file associated with this domain. |
![]() | LoaderOptimization | Specifies the optimization policy used to load an executable. |
![]() | PartialTrustVisibleAssemblies | Gets or sets a list of assemblies marked with the NotVisibleByDefault flag that are made visible to partial-trust code running in a sandboxed application domain. |
![]() | PrivateBinPath | Gets or sets the list of directories under the application base directory that are probed for private assemblies. |
![]() | PrivateBinPathProbe | Gets or sets a string value that includes or excludes ApplicationBase from the search path for the application, and searches only PrivateBinPath. |
![]() | SandboxInterop | Gets or sets a value that indicates whether interface caching is disabled for interop calls in the application domain, so that a QueryInterface is performed on each call. |
![]() | ShadowCopyDirectories | Gets or sets the names of the directories containing assemblies to be shadow copied. |
![]() | ShadowCopyFiles | Gets or sets a string that indicates whether shadow copying is turned on or off. |
![]() | TargetFrameworkName | Gets or sets a string that specifies the target version and profile of the .NET Framework for the application domain, in a format that can be parsed by the FrameworkName.FrameworkName(String) constructor. |
| Name | Description | |
|---|---|---|
![]() ![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | GetConfigurationBytes | Returns the XML configuration information set by the SetConfigurationBytes method, which overrides the application's XML configuration information. |
![]() ![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() ![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | SetCompatibilitySwitches | Sets the specified switches, making the application domain compatible with previous versions of the .NET Framework for the specified issues. |
![]() | SetConfigurationBytes | Provides XML configuration information for the application domain, replacing the application's XML configuration information. |
![]() | SetNativeFunction | Provides the common language runtime with an alternate implementation of a string comparison function. |
![]() ![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
Changing the properties of an AppDomainSetup instance does not affect any existing AppDomain. It can affect only the creation of a new AppDomain, when the CreateDomain method is called with the AppDomainSetup instance as a parameter.
This class implements the IAppDomainSetup interface.
Caution |
|---|
The default value for the DisallowCodeDownload property is false. This setting is unsafe for services. To help prevent services from downloading partially trusted code, set this property to true |
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.



Caution