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

StartUpdates() public method

Subscribe to the characteristic
public StartUpdates ( ) : void
return void
		public void StartUpdates()
		{
			if (!CanUpdate)
				throw new InvalidOperationException("Characteristic does not support UPDATE");

			_peripheral.SetNotifyValue(true, _nativeCharacteristic);
			_isUpdating = true;
		}