123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the Apache 2.0 License.
- // See the LICENSE file in the project root for more information.
- #if CRIPPLED_REFLECTION
- using System.Linq;
- using System.Reflection;
- namespace System.Reflection
- {
- [Flags]
- internal enum BindingFlags
- {
- Instance = 4,
- Static = 8,
- Public = 16,
- NonPublic = 32,
- }
- }
- namespace System
- {
- internal static class TypeExtensions
- {
- public static bool IsNestedPrivate(this Type t)
- {
- return t.GetTypeInfo().IsNestedPrivate;
- }
- public static bool IsInterface(this Type t)
- {
- return t.GetTypeInfo().IsInterface;
- }
- public static bool IsGenericType(this Type t)
- {
- return t.GetTypeInfo().IsGenericType;
- }
- public static Type GetBaseType(this Type t)
- {
- return t.GetTypeInfo().BaseType;
- }
- public static Type[] GetGenericArguments(this Type t)
- {
- // TODO: check what's the right way to support this
- return t.GetTypeInfo().GenericTypeParameters.ToArray();
- }
- public static Type[] GetInterfaces(this Type t)
- {
- return t.GetTypeInfo().ImplementedInterfaces.ToArray();
- }
- public static bool IsAssignableFrom(this Type t1, Type t2)
- {
- return t1.GetTypeInfo().IsAssignableFrom(t2.GetTypeInfo());
- }
- public static MethodInfo[] GetMethods(this Type t, BindingFlags flags)
- {
- return t.GetTypeInfo().DeclaredMethods.Where(m => IsVisible(m, flags)).ToArray();
- }
- private static bool IsVisible(MethodInfo method, BindingFlags flags)
- {
- if ((flags & BindingFlags.Public) != 0 != method.IsPublic)
- {
- return false;
- }
- if ((flags & BindingFlags.NonPublic) == 0 && !method.IsPublic)
- {
- return false;
- }
- if ((flags & BindingFlags.Static) != 0 != method.IsStatic)
- {
- return false;
- }
- return true;
- }
- }
- }
- #else
- namespace System
- {
- internal static class TypeExtensions
- {
- public static bool IsNestedPrivate(this Type t)
- {
- return t.IsNestedPrivate;
- }
- public static bool IsInterface(this Type t)
- {
- return t.IsInterface;
- }
- public static bool IsGenericType(this Type t)
- {
- return t.IsGenericType;
- }
- public static Type GetBaseType(this Type t)
- {
- return t.BaseType;
- }
- }
- }
- #endif
|