Exemplo n.º 1
0
 /// <summary>
 /// Stops all measurements immediately.
 /// </summary>
 /// <returns></returns>
 /// <exception cref="DeviceDisconnectedException">Device is disconnected.</exception>
 /// <exception cref="NotAuthenticatedException">Device is not authenticated.</exception>
 public async Task StopMeasurementAsync()
 {
     if (IsConnectedAndAuthenticated())
     {
         await _heartRate.StopMeasurementAsync();
     }
 }