Class Overview
public DynamicAppType (AppFriend app) Description Constructor
app Application manipulation object public DynamicAppType (AppFriend app, string name) DescriptionConstructor
app Application manipulation object name Type name public dynamic Equals (Object obj) DescriptionCalls the static Equals() method, if one is defined.
Returned as a DynamicAppVar
obj Object. public dynamic GetHashCode () Description Calls the static GetHashCode() method, if it is defined.
Returned as a DynamicAppVar public dynamic GetType () Description Calls the static GetType() method, if it is defined.
Type object returned as a DynamicAppVar public dynamic MemberwiseClone () Commentary Calls the static MemberwiseClone() method, if it is defined.
Returned as a DynamicAppVar public dynamic ToString () Description Calls the static ToString() method, if it is defined.
Returned as a DynamicAppVar public bool TryGetMember (GetMemberBinder binder, ref Object & result) Description Dynamically resolves get access to properties and fields.Cannot be used asynchorously.
Success or failure
binder Binder result Retrieved result public bool TryInvoke (InvokeBinder binder, ref Object [] args, ref Object & result) Description Dynamically resolves delegate types.When called on this class, calls the constructor in the target application and creates a class instance.
Success or failure
binder Binder args Arguments result Return value public bool TryInvokeMember (InvokeMemberBinder binder, ref Object [] args, ref Object & result) Description Dynamically resolves method callsTo specify Async and/or OperationTypeInfo, please pass these as arguments.They can be included in any order.
Success or failure
binder Binder args Arguments result Return value public bool TrySetMember (SetMemberBinder binder, Object value) Description Dynamically resolves set access to properties and fields.Cannot be used asynchronously.
Success or failure
binder Binder value Value to set JR |