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