BluetoothCsipSetCoordinator.ActionCsisConnectionStateChanged Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Intent used to broadcast the change in connection state of the CSIS Client.
[Android.Runtime.Register("ACTION_CSIS_CONNECTION_STATE_CHANGED", ApiSince=33)]
[Android.Runtime.RequiresPermission("android.permission.BLUETOOTH_CONNECT")]
public const string ActionCsisConnectionStateChanged;
[<Android.Runtime.Register("ACTION_CSIS_CONNECTION_STATE_CHANGED", ApiSince=33)>]
[<Android.Runtime.RequiresPermission("android.permission.BLUETOOTH_CONNECT")>]
val mutable ActionCsisConnectionStateChanged : string
Field Value
Implements
- Attributes
Remarks
Intent used to broadcast the change in connection state of the CSIS Client.
This intent will have 3 extras:
<ul> <li>#EXTRA_STATE
- The current state of the profile. <li>#EXTRA_PREVIOUS_STATE
- The previous state of the profile. <li>BluetoothDevice#EXTRA_DEVICE
- The remote device. </ul>
#EXTRA_STATE
or #EXTRA_PREVIOUS_STATE
can be any of #STATE_DISCONNECTED
, #STATE_CONNECTING
, #STATE_CONNECTED
, #STATE_DISCONNECTING
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.