public interface IAppDomainSetup
|
ApplicationBase | Read-write Gets or sets the name of the directory containing the application. |
ApplicationName | Read-write Gets or sets the name of the application. |
CachePath | Read-write Gets and sets the name of an area specific to the application where files are shadow copied. |
ConfigurationFile | Read-write Gets and sets the name of the configuration file for an application domain. |
DynamicBase | Read-write Gets or sets the directory where dynamically generated files are stored and accessed. |
LicenseFile | Read-write Gets or sets the location of the license file associated with this domain. |
PrivateBinPath | Read-write Gets or sets the list of directories that is combined with the AppDomainSetup.ApplicationBase directory to probe for private assemblies. |
PrivateBinPathProbe | Read-write Gets or sets the private binary directory path used to locate an application. |
ShadowCopyDirectories | Read-write Gets or sets the names of the directories containing assemblies to be shadow copied. |
ShadowCopyFiles | Read-write Gets or sets a string that indicates whether shadow copying is turned on or off. |
string ApplicationBase {get; set;}
|
string ApplicationName {get; set;}
|
string CachePath {get; set;}
|
string ConfigurationFile {get; set;}
|
For example, the configuration data for ASP.NET applications is stored for each application, site, and computer, while the configuration data for an executable is stored for each application, user, and computer. Only the host knows the specifics of the configuration data for a particular circumstance.
This property cannot be changed after the AppDomain has finished its first bind.
string DynamicBase {get; set;}
|
This property cannot be changed after the AppDomain has finished its first bind.
string LicenseFile {get; set;}
|
string PrivateBinPath {get; set;}
|
string PrivateBinPathProbe {get; set;}
|
This property cannot be changed after the AppDomain has finished its first bind.
string ShadowCopyDirectories {get; set;}
|
If an executable file is in use, updates to the executable file are stored in a shadow copy directory. Existing users continue using the original executable file until it terminates, while new users use the shadow copied executable file.
This property cannot be changed after the AppDomain has finished its first bind.
string ShadowCopyFiles {get; set;}
|