<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />

TypeExtensions

static class TypeExtensions
public static Assembly Assembly(this Type type)

public static bool AssignableToTypeName(this Type type, string fullTypeName, bool searchInterfaces, out Type match)

public static bool AssignableToTypeName(this Type type, string fullTypeName, bool searchInterfaces)

public static Type BaseType(this Type type)

public static bool ContainsGenericParameters(this Type type)

public static MethodInfo GetBaseDefinition(this MethodInfo method)

public static ConstructorInfo GetConstructor(this Type type, IList<Type> parameterTypes)

public static ConstructorInfo GetConstructor(this Type type, BindingFlags bindingFlags, object placeholder1, IList<Type> parameterTypes, object placeholder2)

public static IEnumerable<ConstructorInfo> GetConstructors(this Type type)

public static IEnumerable<ConstructorInfo> GetConstructors(this Type type, BindingFlags bindingFlags)

public static MemberInfo GetField(this Type type, string member)

public static MemberInfo GetField(this Type type, string member, BindingFlags bindingFlags)

public static IEnumerable<FieldInfo> GetFields(this Type type)

public static IEnumerable<FieldInfo> GetFields(this Type type, BindingFlags bindingFlags)

public static Type[] GetGenericArguments(this Type type)

public static MethodInfo GetGetMethod(this PropertyInfo propertyInfo)

public static MethodInfo GetGetMethod(this PropertyInfo propertyInfo, bool nonPublic)

public static IEnumerable<Type> GetInterfaces(this Type type)

public static IEnumerable<MemberInfo> GetMember(this Type type, string name, MemberTypes memberType, BindingFlags bindingFlags)

public static MemberInfo[] GetMember(this Type type, string member)

public static MemberInfo[] GetMember(this Type type, string member, BindingFlags bindingFlags)

public static MemberInfo[] GetMemberInternal(this Type type, string member, MemberTypes? memberType, BindingFlags bindingFlags)

public static MethodInfo GetMethod(this Type type, string name)

public static MethodInfo GetMethod(this Type type, string name, BindingFlags bindingFlags)

public static MethodInfo GetMethod(this Type type, IList<Type> parameterTypes)

public static MethodInfo GetMethod(this Type type, string name, IList<Type> parameterTypes)

public static MethodInfo GetMethod(this Type type, string name, BindingFlags bindingFlags, object placeHolder1, IList<Type> parameterTypes, object placeHolder2)

public static IEnumerable<MethodInfo> GetMethods(this Type type, BindingFlags bindingFlags)

public static IEnumerable<MethodInfo> GetMethods(this Type type)

public static IEnumerable<PropertyInfo> GetProperties(this Type type, BindingFlags bindingFlags)

public static PropertyInfo GetProperty(this Type type, string name, BindingFlags bindingFlags, object placeholder1, Type propertyType, IList<Type> indexParameters, object placeholder2)

public static PropertyInfo GetProperty(this Type type, string name)

public static PropertyInfo GetProperty(this Type type, string name, BindingFlags bindingFlags)

public static MethodInfo GetSetMethod(this PropertyInfo propertyInfo)

public static MethodInfo GetSetMethod(this PropertyInfo propertyInfo, bool nonPublic)

public static bool ImplementInterface(this Type type, Type interfaceType)

public static bool IsAbstract(this Type type)

public static bool IsAssignableFrom(this Type type, Type c)

public static bool IsClass(this Type type)

public static bool IsDefined(this Type type, Type attributeType, bool inherit)

public static bool IsEnum(this Type type)

public static bool IsGenericType(this Type type)

public static bool IsGenericTypeDefinition(this Type type)

public static bool IsInstanceOfType(this Type type, object o)

public static bool IsInterface(this Type type)

public static bool IsPrimitive(this Type type)

public static bool IsSealed(this Type type)

public static bool IsSubclassOf(this Type type, Type c)

public static bool IsValueType(this Type type)

public static bool IsVisible(this Type type)

public static MemberTypes MemberType(this MemberInfo memberInfo)

public static MethodInfo Method(this Delegate d)