Mirror/Unity-Technologies-networking/Runtime/DotNetCompatibility.cs

46 lines
981 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Reflection;
using System.Net.Sockets;
namespace UnityEngine.Networking
{
internal static class DotNetCompatibility
{
internal static string GetMethodName(this Delegate func)
{
#if NETFX_CORE
return func.GetMethodInfo().Name;
#else
return func.Method.Name;
#endif
}
internal static Type GetBaseType(this Type type)
{
#if NETFX_CORE
return type.GetTypeInfo().BaseType;
#else
return type.BaseType;
#endif
}
internal static string GetErrorCode(this SocketException e)
{
#if NETFX_CORE
return e.SocketErrorCode.ToString();
#else
return e.ErrorCode.ToString();
#endif
}
#if NETFX_CORE
internal static bool IsSubclassOf(this Type type, Type baseType)
{
return WinRTLegacy.TypeExtensions.IsSubClassOf(type, baseType);
}
#endif
}
}