C# Class Hawkeye.Reflection.MethodAccessor

Exibir arquivo Open project: odalet/Hawkeye2 Class Usage Examples

Public Methods

Method Description
Invoke ( object target ) : object
Invoke ( object target, object param ) : object
MethodAccessor ( Type methodTargetType, string methodName ) : System

Initializes a new instance of the MethodAccessor class.

Private Methods

Method Description
FindMethod ( BindingFlags flags ) : MethodInfo
MethodAccessor ( ) : System

Initializes the MethodAccessor class.

Method Details

Invoke() public method

public Invoke ( object target ) : object
target object
return object

Invoke() public method

public Invoke ( object target, object param ) : object
target object
param object
return object

MethodAccessor() public method

Initializes a new instance of the MethodAccessor class.
public MethodAccessor ( Type methodTargetType, string methodName ) : System
methodTargetType System.Type Type of the method target.
methodName string Name of the method.
return System