async Task <bool> RenewTransportAsync(CancellationToken cancellation)
 {
     _Device = _Device.Clone();
     try
     {
         await _Device.EnsureInitializedAsync(cancellation);
     }
     catch (HIDDeviceException) { return(false); }
     return(await _Device.IsConnectedAsync());
 }