iBATIS.NET Class Library DataMapper V1.6.1, DataAccess V1.9.1

IBatisNet.Common.Utilities.Objects.Members Namespace

Namespace hierarchy

Classes

Class Description
AccessorFactory Accessor factory
BaseAccessor Abstract base class for member accessor
DelegateFieldGetAccessor The DelegateFieldGetAccessor class defines a field get accessor and provides Reflection.Emit-generated IGet via the new DynamicMethod (.NET V2).
DelegateFieldSetAccessor The DelegateFieldSetAccessor class defines a field get accessor and provides Reflection.Emit-generated ISet via the new DynamicMethod (.NET V2).
DelegatePropertyGetAccessor The DelegatePropertyGetAccessor class defines a get property accessor and provides Reflection.Emit-generated IGet via the new DynamicMethod (.NET V2).
DelegatePropertySetAccessor The DelegatePropertySetAccessor class defines a set property accessor and provides Reflection.Emit-generated ISet via the new DynamicMethod (.NET V2).
EmitFieldGetAccessor The EmitFieldGetAccessor class provides an IL-based get access to a field of a specified target class.
EmitFieldSetAccessor The EmitFieldSetAccessor class provides an IL-based set access to a field of a specified target class.
EmitPropertyGetAccessor The EmitPropertyGetAccessor class provides an IL-based get access to a property of a specified target class.
EmitPropertySetAccessor The EmitPropertySetAccessor class provides an IL-based set access to a property of a specified target class.
GetAccessorFactory A factory to build IGetAccessorFactory for a type.
ReflectionFieldGetAccessor The ReflectionFieldGetAccessor class provides an reflection get access to a field of a specified target class.
ReflectionFieldSetAccessor The ReflectionFieldSetAccessor class provides an reflection set access to a field of a specified target class.
ReflectionPropertyGetAccessor The ReflectionPropertyGetAccessor class provides an reflection get access to a property of a specified target class.
ReflectionPropertySetAccessor The ReflectionPropertySetAccessor class provides an reflection set access to a property of a specified target class.
SetAccessorFactory A factory to build SetAccessorFactory for a type.

Interfaces

Interface Description
IAccessor The IAccessor interface defines a field/property contract.
IGet The IGet interface defines a field/property get contrat to get the value of a field or a property.
IGetAccessor The IGetAccessor interface defines a field/property get accessor. provides Reflection.Emit-generated IGet implementations for drastically improved performance over default late-bind invoke.
IGetAccessorFactory Factory contact to build IGetAccessor for a type.
ISet The ISet interface defines a field/property set contrat to set the value on a field or property.
ISetAccessor The ISetAccessor interface defines a field/property set accessor. provides Reflection.Emit-generated ISet implementations for drastically improved performance over default late-bind invoke.
ISetAccessorFactory Factory contact to build ISetAccessor for a type.