 | ReflectionUtilsCallMethodExCom Method |
Calls a method on a COM object with '.' syntax (Customer instance and Address.DoSomeThing method)
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static Object CallMethodExCom(
Object parent,
string method,
params Object[] parms
)
Public Shared Function CallMethodExCom (
parent As Object,
method As String,
ParamArray parms As Object()
) As Object
public:
static Object^ CallMethodExCom(
Object^ parent,
String^ method,
... array<Object^>^ parms
)
static member CallMethodExCom :
parent : Object *
method : string *
parms : Object[] -> Object
Parameters
- parent
- Type: SystemObject
the object instance on which to call method - method
- Type: SystemString
The method or . syntax path to the method (Address.Parse) - parms
- Type: SystemObject
Any number of parameters
Return Value
Type:
Object[Missing <returns> documentation for "M:Koden.Utils.ReflectionUtils.CallMethodExCom(System.Object,System.String,System.Object[])"]
See Also