Beispiel #1
0
 public static IConstructorWrapper CreateWrapper(this ConstructorInfo constructor)
 {
     return(ReflectionUtility.CreateConstructorWrapper(constructor));
 }
Beispiel #2
0
 public static IMethodWrapper CreateWrapper(this MethodInfo method)
 {
     return(ReflectionUtility.CreateMethodWrapper(method));
 }
Beispiel #3
0
 public static IFieldWrapper CreateWrapper(this FieldInfo field)
 {
     return(ReflectionUtility.CreateFieldWrapper(field));
 }
Beispiel #4
0
 public static IPropertyWrapper CreateWrapper(this PropertyInfo property)
 {
     return(ReflectionUtility.CreatePropertyWrapper(property));
 }
Beispiel #5
0
 public static ITypeWrapper CreateWrapper(this Type type, BindingFlags flags = ReflectionUtility.InstanceFlags, Func <MemberInfo, bool> filter = null)
 {
     return(ReflectionUtility.CreateTypeWrapper(type, flags, filter));
 }