Implement mono_gc_alloc_fixed on Boehm to be uncollectable. This matches SGen behavio...
[mono.git] / mcs / class / corlib / ReferenceSources / AppDomain.cs
1 using System.Reflection;
2 using System.Security;
3 using System.Runtime.Versioning;
4
5 namespace System {
6
7         public partial class AppDomain
8         {
9                 internal String GetTargetFrameworkName()
10                 {
11                         return ".NETFramework,Version=v4.5";
12                 }
13
14                 internal static bool IsAppXModel ()
15                 {
16                         return false;
17                 }
18
19                 internal static bool IsAppXDesignMode ()
20                 {
21                         return false;
22                 }
23
24                 internal static void CheckReflectionOnlyLoadSupported()
25                 {
26                 }
27
28                 internal static void CheckLoadFromSupported()
29                 {
30                 }
31         }
32 }