2015-04-07 09:35:12 +01:00
|
|
|
using System.Reflection;
|
|
|
|
using System.Security;
|
|
|
|
using System.Runtime.Versioning;
|
|
|
|
|
|
|
|
namespace System {
|
|
|
|
|
|
|
|
public partial class AppDomain
|
|
|
|
{
|
|
|
|
internal static bool IsAppXModel ()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
internal static bool IsAppXDesignMode ()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2015-08-26 07:17:56 -04:00
|
|
|
|
|
|
|
internal static void CheckReflectionOnlyLoadSupported()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
internal static void CheckLoadFromSupported()
|
|
|
|
{
|
|
|
|
}
|
2015-04-07 09:35:12 +01:00
|
|
|
}
|
|
|
|
}
|