/// <summary>
 /// Raises the <see cref="ConnectionStatusUpdated"/> event.
 /// </summary>
 /// <param name="e">A <see cref="DeviceControllerConnectionStatusUpdatedEventArgs"/> that contains the event data.</param>
 protected void OnConnectionStatusUpdated(DeviceControllerConnectionStatusUpdatedEventArgs e)
 {
     if (this.ConnectionStatusUpdated != null)
     {
         this.ConnectionStatusUpdated(this, e);
     }
 }
 private void ControllerConnectionStatusUpdated(object sender, DeviceControllerConnectionStatusUpdatedEventArgs e)
 {
     this.log.Log(e.StatusUpdateText);
 }