BluetoothLE.iOS.Characteristic.StopUpdates C# (CSharp) Method

StopUpdates() public method

Unsubscribe from the characteristic
public StopUpdates ( ) : void
return void
		public void StopUpdates()
		{
			if (CanUpdate)
			{
				_peripheral.SetNotifyValue(false, _nativeCharacteristic);
			}

			_isUpdating = false;
		}