Table of Contents

Interface ICBCentralManagerDelegate

Namespace
CoreBluetooth

An interface that provides updates for the discovery and management of peripheral devices. https://developer.apple.com/documentation/corebluetooth/cbcentralmanagerdelegate

public interface ICBCentralManagerDelegate

Methods

DidConnectPeripheral(CBCentralManager, CBPeripheral)

void DidConnectPeripheral(CBCentralManager central, CBPeripheral peripheral)

Parameters

central CBCentralManager
peripheral CBPeripheral

DidDisconnectPeripheral(CBCentralManager, CBPeripheral, CBError)

void DidDisconnectPeripheral(CBCentralManager central, CBPeripheral peripheral, CBError error)

Parameters

central CBCentralManager
peripheral CBPeripheral
error CBError

DidDiscoverPeripheral(CBCentralManager, CBPeripheral, int)

void DidDiscoverPeripheral(CBCentralManager central, CBPeripheral peripheral, int rssi)

Parameters

central CBCentralManager
peripheral CBPeripheral
rssi int

DidFailToConnectPeripheral(CBCentralManager, CBPeripheral, CBError)

void DidFailToConnectPeripheral(CBCentralManager central, CBPeripheral peripheral, CBError error)

Parameters

central CBCentralManager
peripheral CBPeripheral
error CBError

DidUpdateState(CBCentralManager)

void DidUpdateState(CBCentralManager central)

Parameters

central CBCentralManager