You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Framework/Connected.Interop/Members.cs

58 lines
1.6 KiB

using System.Reflection;
namespace Connected.Interop
{
public static class Members
{
public static IEnumerable<MemberInfo> GetDataMembers(this Type type, string? name = null, bool includeNonPublic = false)
{
return type.GetInheritedProperites()
.Where(p => p.CanRead && p.GetMethod is not null && !p.GetMethod.IsStatic && (p.GetMethod.IsPublic || includeNonPublic) && (string.IsNullOrEmpty(name) || string.Equals(p.Name, name, StringComparison.Ordinal)))
.Cast<MemberInfo>().Concat(type.GetInheritedFields()
.Where(f => !f.IsStatic && (f.IsPublic || includeNonPublic) && (string.IsNullOrEmpty(name) || string.Equals(f.Name, name, StringComparison.Ordinal))));
}
public static MemberInfo? GetDataMember(this Type type, string name, bool includeNonPublic = false)
{
return type.GetDataMembers(name, includeNonPublic).FirstOrDefault();
}
public static IEnumerable<FieldInfo> GetInheritedFields(this Type type)
{
foreach (var info in type.GetInheritedTypeInfos())
{
foreach (var p in info.GetRuntimeFields())
yield return p;
}
}
public static Type? GetMemberType(MemberInfo mi)
{
if (mi is FieldInfo fi)
return fi.FieldType;
if (mi is PropertyInfo pi)
return pi.PropertyType;
if (mi is EventInfo ei)
return ei.EventHandlerType;
if (mi is MethodInfo me)
return me.ReturnType;
return default;
}
public static bool IsReadOnly(MemberInfo member)
{
if (member is PropertyInfo pi)
return !pi.CanWrite || pi.SetMethod is null;
if (member is FieldInfo fi)
return (fi.Attributes & FieldAttributes.InitOnly) != 0;
return true;
}
}
}