BLE.Server.Droid.BleGattServerCallback.OnNotificationSent C# (CSharp) Method

OnNotificationSent() public method

public OnNotificationSent ( Android.Bluetooth.BluetoothDevice device, GattStatus status ) : void
device Android.Bluetooth.BluetoothDevice
status GattStatus
return void
        public override void OnNotificationSent(BluetoothDevice device, GattStatus status)
        {
            base.OnNotificationSent(device, status);

            if (NotificationSent != null)
            {
                NotificationSent(this, new BleEventArgs() { Device = device });
            }
        }