Class MethodInvoker
Class implementation for MethodInvoker
Inheritance
System.Object
MethodInvoker
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Chart
Assembly: Syncfusion.Chart.Wpf.dll
Syntax
public class MethodInvoker : IMethodInvoker
Constructors
MethodInvoker(MethodInfo)
Called when instance created for MethodInvoker
Declaration
public MethodInvoker(MethodInfo methodInfo)
Parameters
Type | Name | Description |
---|---|---|
System.Reflection.MethodInfo | methodInfo |
Properties
MethodInfo
Get or Set MethodInfo property
Declaration
public MethodInfo MethodInfo { get; }
Property Value
Type |
---|
System.Reflection.MethodInfo |
Methods
Invoke(Object, Object[])
Return object from the given objects
Declaration
public object Invoke(object instance, params object[] parameters)
Parameters
Type | Name | Description |
---|---|---|
System.Object | instance | |
System.Object[] | parameters |
Returns
Type |
---|
System.Object |
Explicit Interface Implementations
IMethodInvoker.Invoke(Object, Object[])
Declaration
object IMethodInvoker.Invoke(object instance, params object[] parameters)
Parameters
Type | Name | Description |
---|---|---|
System.Object | instance | |
System.Object[] | parameters |
Returns
Type |
---|
System.Object |