Class MethodInvoker
Represents the method invoker.
Inheritance
System.Object
MethodInvoker
Namespace: Syncfusion.UI.Xaml.SmithChart
Assembly: Syncfusion.SfSmithChart.UWP.dll
Syntax
public class MethodInvoker : Object, IMethodInvoker
Constructors
MethodInvoker(MethodInfo)
Initializes a new instance of the MethodInvoker class.
Declaration
public MethodInvoker(MethodInfo methodInfo)
Parameters
Type | Name | Description |
---|---|---|
System.Reflection.MethodInfo | methodInfo | The Method Information |
Properties
MethodInfo
Gets or private sets the MethodInfo.
Declaration
public MethodInfo MethodInfo { get; }
Property Value
Type |
---|
System.Reflection.MethodInfo |
Methods
Invoke(Object, Object[])
Invoke method
Declaration
public object Invoke(object instance, params object[] parameters)
Parameters
Type | Name | Description |
---|---|---|
System.Object | instance | The Instance |
System.Object[] | parameters | The Parameters |
Returns
Type | Description |
---|---|
System.Object | The invoker |