示例#1
0
 public virtual void OnDeviceError(CloverDeviceErrorEvent deviceErrorEvent)
 {
 }
 public void OnDeviceError(CloverDeviceErrorEvent deviceErrorEvent)
 {
     throw new NotImplementedException();
 }
 public void OnDeviceError(CloverDeviceErrorEvent deviceErrorEvent)
 {
     Send("/DeviceError", Serialize(deviceErrorEvent));
 }
 public void OnDeviceError(CloverDeviceErrorEvent deviceErrorEvent)
 {
     uiThread.Send(delegate (object state) {
         AlertForm.Show(this, "Device Error", deviceErrorEvent.Message);
     }, null);
 }
 public void OnDeviceError(CloverDeviceErrorEvent deviceErrorEvent)
 {
 }
 public void OnDeviceError(CloverDeviceErrorEvent deviceErrorEvent)
 {
     MessageBox.Show(deviceErrorEvent.Message);
 }
 public void OnDeviceError(CloverDeviceErrorEvent deviceErrorEvent)
 {
     OnDeviceErrorMessage deviceError = new OnDeviceErrorMessage();
     deviceError.payload = deviceErrorEvent;
     WebSocket.Send(Serialize(deviceError));
 }