summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/AppDomainAttributes.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/AppDomainAttributes.cs')
-rw-r--r--src/mscorlib/src/System/AppDomainAttributes.cs48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/AppDomainAttributes.cs b/src/mscorlib/src/System/AppDomainAttributes.cs
new file mode 100644
index 0000000000..0980b5fe90
--- /dev/null
+++ b/src/mscorlib/src/System/AppDomainAttributes.cs
@@ -0,0 +1,48 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+/*=============================================================================
+**
+**
+**
+** Purpose: For AppDomain-related custom attributes.
+**
+**
+=============================================================================*/
+
+namespace System {
+
+ [Serializable]
+ [System.Runtime.InteropServices.ComVisible(true)]
+ public enum LoaderOptimization
+ {
+ NotSpecified = 0,
+ SingleDomain = 1,
+ MultiDomain = 2,
+ MultiDomainHost = 3,
+ [Obsolete("This method has been deprecated. Please use Assembly.Load() instead. http://go.microsoft.com/fwlink/?linkid=14202")]
+ DomainMask = 3,
+ [Obsolete("This method has been deprecated. Please use Assembly.Load() instead. http://go.microsoft.com/fwlink/?linkid=14202")]
+ DisallowBindings = 4
+ }
+
+ [AttributeUsage (AttributeTargets.Method)]
+ [System.Runtime.InteropServices.ComVisible(true)]
+ public sealed class LoaderOptimizationAttribute : Attribute
+ {
+ internal byte _val;
+
+ public LoaderOptimizationAttribute(byte value)
+ {
+ _val = value;
+ }
+ public LoaderOptimizationAttribute(LoaderOptimization value)
+ {
+ _val = (byte) value;
+ }
+ public LoaderOptimization Value
+ { get {return (LoaderOptimization) _val;} }
+ }
+}
+