RfcommConnectionRequest

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
deviceId string Bluetooth device ID
serviceId string RFCOMM service UUID (e.g., SerialPort)
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-rfcommconnectionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RfcommConnectionRequest",
  "title": "RfcommConnectionRequest",
  "type": "object",
  "properties": {
    "deviceId": {
      "type": "string",
      "description": "Bluetooth device ID"
    },
    "serviceId": {
      "type": "string",
      "description": "RFCOMM service UUID (e.g., SerialPort)"
    }
  },
  "required": [
    "deviceId",
    "serviceId"
  ]
}