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

IGetAccessor Interface

The IGetAccessor interface defines a field/property get accessor. provides Reflection.Emit-generated IGet implementations for drastically improved performance over default late-bind invoke.

[Visual Basic]
Public Interface IGetAccessor
    Implements IAccessor, IGet
[C#]
public interface IGetAccessor : IAccessor, IGet

Types that implement IGetAccessor

Type Description
DelegateFieldGetAccessor The DelegateFieldGetAccessor class defines a field get accessor and provides Reflection.Emit-generated IGet 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).
EmitFieldGetAccessor The EmitFieldGetAccessor class provides an IL-based get 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.
ReflectionFieldGetAccessor The ReflectionFieldGetAccessor class provides an reflection get 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.

Requirements

Namespace: IBatisNet.Common.Utilities.Objects.Members

Assembly: IBatisNet.Common (in IBatisNet.Common.dll)

See Also

IBatisNet.Common.Utilities.Objects.Members Namespace