C# Class Dynamitey.Internal.InvokeSetters

Internal class implmenation for Dynamic.InvokeSetAll
Inheritance: System.Dynamic.DynamicObject
Afficher le fichier Open project: ekonbenefits/dynamitey

Méthodes publiques

Méthode 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

Méthode Description
InvokeSetters ( ) : System

Method Details

TryInvoke() public méthode

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.
Résultat bool