C# Class Dynamitey.Internal.InvokeSetters

Internal class implmenation for Dynamic.InvokeSetAll
Inheritance: System.Dynamic.DynamicObject
Mostra file Open project: ekonbenefits/dynamitey

Public Methods

Method Description
TryInvoke ( InvokeBinder binder, object args, object &result ) : bool

Provides the implementation for operations that invoke an object. Classes derived from the T:System.Dynamic.DynamicObject class can override this method to specify dynamic behavior for operations such as invoking an object or a delegate.

Private Methods

Method Description
InvokeSetters ( ) : System

Method Details

TryInvoke() public method

Provides the implementation for operations that invoke an object. Classes derived from the T:System.Dynamic.DynamicObject class can override this method to specify dynamic behavior for operations such as invoking an object or a delegate.
public TryInvoke ( InvokeBinder binder, object args, object &result ) : bool
binder System.Dynamic.InvokeBinder Provides information about the invoke operation.
args object The arguments that are passed to the object during the invoke operation. For example, for the sampleObject(100) operation, where sampleObject is derived from the class, [0] is equal to 100.
result object The result of the object invocation.
return bool