Beispiel #1
0
 public void StartWithCommandLine(ComCallbackBase callback, string commandLine)
 {
     ComHelper.InvokeMethod(this.controllerInstance, "StartWithCommandLine", new ComCallbackWrapper(callback), commandLine);
 }
Beispiel #2
0
 internal ComCallbackWrapper(ComCallbackBase callback)
 {
     this.callback = callback;
 }
Beispiel #3
0
 public void Start(ComCallbackBase callback)
 {
     ComHelper.InvokeMethod(this.controllerInstance, "Start", new ComCallbackWrapper(callback));
 }