CBCentralManager.ConnectPeripheral 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
ConnectPeripheral(CBPeripheral, NSDictionary) |
連接到指定的周邊 (弱型別參數版本) 。 |
ConnectPeripheral(CBPeripheral, PeripheralConnectionOptions) |
連接到指定的周邊。 |
ConnectPeripheral(CBPeripheral, NSDictionary)
連接到指定的周邊 (弱型別參數版本) 。
[Foundation.Export("connectPeripheral:options:")]
public virtual void ConnectPeripheral (CoreBluetooth.CBPeripheral peripheral, Foundation.NSDictionary options);
abstract member ConnectPeripheral : CoreBluetooth.CBPeripheral * Foundation.NSDictionary -> unit
override this.ConnectPeripheral : CoreBluetooth.CBPeripheral * Foundation.NSDictionary -> unit
參數
- peripheral
- CBPeripheral
要連線到的周邊。
- options
- NSDictionary
設定周邊連線的選項包括 OptionAllowDuplicatesKey 和 OptionNotifyOnDisconnectionKey,其中應該包含 NSNumbers。
這個參數可以是 null
。
- 屬性
適用於
ConnectPeripheral(CBPeripheral, PeripheralConnectionOptions)
連接到指定的周邊。
public void ConnectPeripheral (CoreBluetooth.CBPeripheral peripheral, CoreBluetooth.PeripheralConnectionOptions options = null);
member this.ConnectPeripheral : CoreBluetooth.CBPeripheral * CoreBluetooth.PeripheralConnectionOptions -> unit
參數
- peripheral
- CBPeripheral
要連線到的周邊。
- options
- PeripheralConnectionOptions
設定周邊連線的選項。
備註
ConnectedPeripheral如果連線成功,或引發 FailedToConnectPeripheral 失敗時, (未在逾時) 引發 事件。
或者,如果您設定 Delegate 方法, ConnectedPeripheral(CBCentralManager, CBPeripheral) 則會在連線成功時呼叫 方法,或呼叫 FailedToConnectPeripheral(CBCentralManager, CBPeripheral, NSError) 失敗時 (未在逾時) 呼叫 。
如果周邊無法使用,這個方法會持續等候它變成可用狀態。 若要取消連線嘗試,您必須呼叫 CancelPeripheralConnection(CBPeripheral) 。