Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System/AppDomainSetup.cs')
-rwxr-xr-xmcs/class/corlib/System/AppDomainSetup.cs161
1 files changed, 0 insertions, 161 deletions
diff --git a/mcs/class/corlib/System/AppDomainSetup.cs b/mcs/class/corlib/System/AppDomainSetup.cs
deleted file mode 100755
index 38620b7a5a3..00000000000
--- a/mcs/class/corlib/System/AppDomainSetup.cs
+++ /dev/null
@@ -1,161 +0,0 @@
-//
-// System/AppDomainSetup.cs
-//
-// Author:
-// Dietmar Maurer (dietmar@ximian.com)
-//
-// (C) 2001 Ximian, Inc. http://www.ximian.com
-//
-
-using System;
-using System.Runtime.CompilerServices;
-
-namespace System {
-
-
- [Serializable]
- public sealed class AppDomainSetup : IAppDomainSetup {
- string application_base;
- string application_name;
- string cache_path;
- string configuration_file;
- string dynamic_base;
- string license_file;
- string private_bin_path;
- string private_bin_path_probe;
- string shadow_copy_directories;
- string shadow_copy_files;
- bool publisher_policy;
-
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- private static extern AppDomainSetup InitAppDomainSetup (AppDomainSetup setup);
-
- public AppDomainSetup ()
- {
- InitAppDomainSetup (this);
- }
-
- public string ApplicationBase {
-
- get {
- return application_base;
- }
-
- set {
- application_base = value;
- }
- }
-
- public string ApplicationName {
-
- get {
- return application_name;
- }
-
- set {
- application_name = value;
- }
- }
-
- public string CachePath {
-
- get {
- return cache_path;
- }
-
- set {
- cache_path = value;
- }
- }
-
- public string ConfigurationFile {
-
- get {
- return configuration_file;
- }
-
- set {
- configuration_file = value;
- }
- }
-
- public bool DisallowPublisherPolicy {
- get {
- return publisher_policy;
- }
-
- set {
- publisher_policy = value;
- }
- }
-
- public string DynamicBase {
-
- get {
- return dynamic_base;
- }
-
- set {
- dynamic_base = value;
- }
- }
-
- public string LicenseFile {
-
- get {
- return license_file;
- }
-
- set {
- license_file = value;
- }
- }
-
-
-
- public string PrivateBinPath {
-
- get {
- return private_bin_path;
- }
-
- set {
- private_bin_path = value;
- }
- }
-
- public string PrivateBinPathProbe {
-
- get {
- return private_bin_path_probe;
- }
-
- set {
- private_bin_path_probe = value;
- }
- }
-
- public string ShadowCopyDirectories {
-
- get {
- return shadow_copy_directories;
- }
-
- set {
- shadow_copy_directories = value;
- }
- }
-
- public string ShadowCopyFiles {
-
- get {
- return shadow_copy_files;
- }
-
- set {
- shadow_copy_files = value;
- }
- }
-
- }
-}