IInvokeMethodAddon.cs
1 
2 using static Sage.ES.S50.Addons.InvokeMethodAddon;
3 
4 namespace Sage.ES.S50.Addons
5 {
9  internal interface IInvokeMethodAddon
10  {
14  event InvokeMethodAddonsEventHandler OnBeginInvokeMethodAddon;
18  event InvokeMethodAddonsEventHandler OnEndInvokeMethodAddons;
22  event InvokeMethodErrorEventHandler OnErrorInvokeMethodsAddons;
26  object InvokeMethod(params object[] parameters);
27  }
28 }