BluetoothLE.Droid.GattCallback.OnServicesDiscovered C# (CSharp) Method

OnServicesDiscovered() public method

Raises the services discovered event.
public OnServicesDiscovered ( Android.Bluetooth.BluetoothGatt gatt, GattStatus status ) : void
gatt Android.Bluetooth.BluetoothGatt Gatt.
status GattStatus Status.
return void
		public override void OnServicesDiscovered(BluetoothGatt gatt, GattStatus status)
		{
			base.OnServicesDiscovered(gatt, status);

			if (status != GattStatus.Success)
				return;

			ServicesDiscovered(this, EventArgs.Empty);
		}