Class ReflectionDelegateFactory
Inheritance
System.Object
ReflectionDelegateFactory
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: Bayat.Json.Runtime.dll
Syntax
public abstract class ReflectionDelegateFactory
Methods
|
Improve this Doc
View Source
CreateDefaultConstructor<T>(Type)
Declaration
public abstract Func<T> CreateDefaultConstructor<T>(Type type)
Parameters
Type |
Name |
Description |
System.Type |
type |
|
Returns
Type |
Description |
System.Func<T> |
|
Type Parameters
|
Improve this Doc
View Source
CreateGet<T>(FieldInfo)
Declaration
public abstract Func<T, object> CreateGet<T>(FieldInfo fieldInfo)
Parameters
Type |
Name |
Description |
System.Reflection.FieldInfo |
fieldInfo |
|
Returns
Type |
Description |
System.Func<T, System.Object> |
|
Type Parameters
|
Improve this Doc
View Source
CreateGet<T>(MemberInfo)
Declaration
public Func<T, object> CreateGet<T>(MemberInfo memberInfo)
Parameters
Type |
Name |
Description |
System.Reflection.MemberInfo |
memberInfo |
|
Returns
Type |
Description |
System.Func<T, System.Object> |
|
Type Parameters
|
Improve this Doc
View Source
CreateGet<T>(PropertyInfo)
Declaration
public abstract Func<T, object> CreateGet<T>(PropertyInfo propertyInfo)
Parameters
Type |
Name |
Description |
System.Reflection.PropertyInfo |
propertyInfo |
|
Returns
Type |
Description |
System.Func<T, System.Object> |
|
Type Parameters
|
Improve this Doc
View Source
CreateMethodCall<T>(MethodBase)
Declaration
public abstract MethodCall<T, object> CreateMethodCall<T>(MethodBase method)
Parameters
Type |
Name |
Description |
System.Reflection.MethodBase |
method |
|
Returns
Type Parameters
|
Improve this Doc
View Source
CreateParameterizedConstructor(MethodBase)
Declaration
public abstract ObjectConstructor<object> CreateParameterizedConstructor(MethodBase method)
Parameters
Type |
Name |
Description |
System.Reflection.MethodBase |
method |
|
Returns
|
Improve this Doc
View Source
CreateSet<T>(FieldInfo)
Declaration
public abstract Action<T, object> CreateSet<T>(FieldInfo fieldInfo)
Parameters
Type |
Name |
Description |
System.Reflection.FieldInfo |
fieldInfo |
|
Returns
Type |
Description |
System.Action<T, System.Object> |
|
Type Parameters
|
Improve this Doc
View Source
CreateSet<T>(MemberInfo)
Declaration
public Action<T, object> CreateSet<T>(MemberInfo memberInfo)
Parameters
Type |
Name |
Description |
System.Reflection.MemberInfo |
memberInfo |
|
Returns
Type |
Description |
System.Action<T, System.Object> |
|
Type Parameters
|
Improve this Doc
View Source
CreateSet<T>(PropertyInfo)
Declaration
public abstract Action<T, object> CreateSet<T>(PropertyInfo propertyInfo)
Parameters
Type |
Name |
Description |
System.Reflection.PropertyInfo |
propertyInfo |
|
Returns
Type |
Description |
System.Action<T, System.Object> |
|
Type Parameters