C# 클래스 Dynamitey.Internal.InvokeSetters

Internal class implmenation for Dynamic.InvokeSetAll
상속: System.Dynamic.DynamicObject
파일 보기 프로젝트 열기: ekonbenefits/dynamitey

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
InvokeSetters ( ) : System

메소드 상세

TryInvoke() 공개 메소드

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.
리턴 bool