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

OnConnectionStateChange() public method

public OnConnectionStateChange ( Android.Bluetooth.BluetoothDevice device, ProfileState status, ProfileState newState ) : void
device Android.Bluetooth.BluetoothDevice
status ProfileState
newState ProfileState
return void
        public override void OnConnectionStateChange(BluetoothDevice device, ProfileState status, ProfileState newState)
        {
            base.OnConnectionStateChange(device, status, newState);
            Console.WriteLine("State changed to {0}", newState);

        }