js-apis-device-manager.md 49.7 KB
Newer Older
1
# @ohos.distributedHardware.deviceManager (设备管理)
Z
zengyawen 已提交
2

3 4 5 6 7 8 9 10 11
本模块提供分布式设备管理能力。

系统应用可调用接口实现如下功能:

- 注册和解除注册设备上下线变化监听
- 发现周边不可信设备
- 认证和取消认证设备
- 查询可信设备列表
- 查询本地设备信息,包括设备名称,设备类型和设备标识
S
summer8999 已提交
12
- 发布设备发现
S
summer8999 已提交
13

14 15
> **说明:**
>
16 17
> - 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
> - 本模块接口为系统接口,三方应用不支持调用。
Z
zengyawen 已提交
18

Z
zengyawen 已提交
19 20

## 导入模块
Z
zengyawen 已提交
21

22
```js
Z
zengyawen 已提交
23 24 25 26
import deviceManager from '@ohos.distributedHardware.deviceManager';
```


Z
zengyawen 已提交
27 28 29
## deviceManager.createDeviceManager

createDeviceManager(bundleName: string, callback: AsyncCallback<DeviceManager>): void
Z
zengyawen 已提交
30 31

创建一个设备管理器实例。
32 33 34

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
35
**参数:**
@
@shi-xiaoxiao-iris 已提交
36

37 38 39 40
| 参数名     | 类型                                                 | 必填 | 说明                                                        |
| ---------- | ---------------------------------------------------- | ---- | ----------------------------------------------------------- |
| bundleName | string                                               | 是   | 指示应用程序的Bundle名称。                                  |
| callback   | AsyncCallback<[DeviceManager](#devicemanager)> | 是   | DeviceManager实例创建时调用的回调,返回设备管理器对象实例。 |
Z
zengyawen 已提交
41

@
@shi-xiaoxiao-iris 已提交
42
**错误码:**
@
@shi-xiaoxiao-iris 已提交
43

@
@shi-xiaoxiao-iris 已提交
44
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
45

@
@shi-xiaoxiao-iris 已提交
46
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
47 48 49
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600102 | Failed to obtain the service.                                   |
@
@shi-xiaoxiao-iris 已提交
50

@
@shi-xiaoxiao-iris 已提交
51
**示例:**
@
@shi-xiaoxiao-iris 已提交
52

53 54 55
  ```js
  try {
    deviceManager.createDeviceManager("ohos.samples.jshelloworld", (err, data) => {
Z
zengyawen 已提交
56
      if (err) { 
57
        console.error("createDeviceManager errCode:" + err.code + ",errMessage:" + err.message);
58
        return;
Z
zengyawen 已提交
59 60
      }
      console.info("createDeviceManager success");
H
HelloCrease 已提交
61
      let dmInstance = data;
62 63
    });
  } catch(err) {
64
    console.error("createDeviceManager errCode:" + err.code + ",errMessage:" + err.message);
65
  }
Z
zengyawen 已提交
66 67
  ```

68
## DeviceInfo
Z
zengyawen 已提交
69

70
设备信息。
Z
zengyawen 已提交
71

72 73
**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
74
| 名称                     | 类型                        | 必填   | 说明       |
H
HelloCrease 已提交
75 76 77 78 79
| ---------------------- | ------------------------- | ---- | -------- |
| deviceId               | string                    | 是    | 设备的唯一标识。 |
| deviceName             | string                    | 是    | 设备名称。    |
| deviceType             | [DeviceType](#devicetype) | 是    | 设备类型。    |
| networkId<sup>8+</sup> | string                    | 是    | 设备网络标识。  |
S
summer8999 已提交
80
| range<sup>9+</sup>     | number                    | 是    | 发现设备的距离。  |
W
wangxuanxuan 已提交
81
| authForm<sup>10+</sup> | [AuthForm](#authform)     | 是    | 设备认证类型  |
Z
zengyawen 已提交
82 83

## DeviceType
Z
zengyawen 已提交
84 85 86

表示设备类型的枚举类。

87 88
**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
89
| 名称           | 值  | 说明   |
H
HelloCrease 已提交
90 91 92 93 94 95 96 97
| ------------ | ---- | ---- |
| SPEAKER      | 0x0A | 智能音箱 |
| PHONE        | 0x0E | 手机   |
| TABLET       | 0x11 | 平板   |
| WEARABLE     | 0x6D | 智能穿戴 |
| TV           | 0x9C | 智慧屏  |
| CAR          | 0x83 | 车    |
| UNKNOWN_TYPE | 0    | 未知设备 |
98

W
wuqi0105 已提交
99
## AuthForm<sup>10+</sup>
W
wangxuanxuan 已提交
100 101 102 103 104 105 106 107 108 109 110

表示设备认证类型的枚举类。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

| 名称                 | 值  | 说明             |
| ------------------- | ---- | --------------- |
| INVALID_TYPE        | -1   | 设备没有认证 |
| PEER_TO_PEER        | 0    | 无账号设备点对点认证   |
| IDENTICAL_ACCOUNT   | 1    | 设备同账号认证   |
| ACROSS_ACCOUNT      | 2    | 设备跨账号认证 |
Z
zengyawen 已提交
111

112
## DeviceStateChangeAction
Z
zengyawen 已提交
113

114 115 116 117
表示设备状态变化的枚举。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
118
| 名称      | 值  | 说明              |
H
HelloCrease 已提交
119
| ------- | ---- | --------------- |
S
summer8999 已提交
120 121 122
| ONLINE  | 0    | 设备物理上线状态。           |
| READY   | 1    | 设备可用状态,表示设备间信息已在分布式数据中同步完成, 可以运行分布式业务。 |
| OFFLINE | 2    | 设备物理下线状态。           |
H
HelloCrease 已提交
123
| CHANGE  | 3    | 设备信息更改。         |
124 125 126 127

## SubscribeInfo

发现信息。
Z
zengyawen 已提交
128

129 130
**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
131
| 名称            | 类型                                | 必填   | 说明                |
H
HelloCrease 已提交
132 133
| ------------- | --------------------------------- | ---- | ----------------- |
| subscribeId   | number                            | 是    | 发现标识,用于标识不同的发现周期。 |
W
wuqi0105 已提交
134 135 136 137 138 139
| mode          | [DiscoverMode ](#discovermode)    | 是    | 发现模式。             |
| medium        | [ExchangeMedium](#exchangemedium) | 是    | 发现类型。             |
| freq          | [ExchangeFreq](#exchangefreq)     | 是    | 发现频率。             |
| isSameAccount | boolean                           | 是    | 是否同帐号。            |
| isWakeRemote  | boolean                           | 是    | 是否唤醒设备。           |
| capability    | [SubscribeCap](#subscribecap)     | 是    | 发现能力。             |
140 141 142 143 144 145 146 147


## DiscoverMode 

表示发现模式的枚举。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
148
| 名称                    | 值  | 说明    |
H
HelloCrease 已提交
149
| --------------------- | ---- | ----- |
150
| DISCOVER_MODE_PASSIVE | 0x55 | 被动模式。 |
H
HelloCrease 已提交
151
| DISCOVER_MODE_ACTIVE  | 0xAA | 主动模式。 |
152 153 154 155 156 157 158 159


## ExchangeMedium 

表示发现类型的枚举。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
160
| 名称   | 值  | 说明        |
H
HelloCrease 已提交
161 162 163 164 165
| ---- | ---- | --------- |
| AUTO | 0    | 自动发现类型。   |
| BLE  | 1    | 蓝牙发现类型。   |
| COAP | 2    | WiFi发现类型。 |
| USB  | 3    | USB发现类型。  |
166 167 168 169 170 171 172

## ExchangeFreq 

表示发现频率的枚举。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
173
| 名称         | 值  | 说明    |
H
HelloCrease 已提交
174 175 176 177 178
| ---------- | ---- | ----- |
| LOW        | 0    | 低频率。  |
| MID        | 1    | 中频率。  |
| HIGH       | 2    | 高频率。  |
| SUPER_HIGH | 3    | 超高频率。 |
179 180 181 182 183 184 185 186


## SubscribeCap 

表示发现能力的枚举。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
187
| 名称                        | 值  | 说明             |
H
HelloCrease 已提交
188 189 190
| ------------------------- | ---- | -------------- |
| SUBSCRIBE_CAPABILITY_DDMP | 0    | DDMP能力,后续会被废弃。 |
| SUBSCRIBE_CAPABILITY_OSD  | 1    | OSD能力。         |
191 192 193 194 195 196 197 198


## AuthParam

认证参数。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
199
| 名称        | 类型                   | 必填   | 说明         |
H
HelloCrease 已提交
200 201
| --------- | -------------------- | ---- | ---------- |
| authType  | number               | 是    | 认证类型。      |
202
| extraInfo | {[key:string]&nbsp;:&nbsp;any} | 否    | 认证参数可扩展字段。 |
203 204 205 206 207 208 209

## AuthInfo

认证信息。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
210
| 名称        | 类型                   | 必填   | 说明         |
H
HelloCrease 已提交
211 212 213
| --------- | -------------------- | ---- | ---------- |
| authType  | number               | 是    | 认证类型。      |
| token     | number               | 是    | 认证Token。   |
214
| extraInfo | {[key:string]&nbsp;:&nbsp;any} | 否    | 认证信息可扩展字段。 |
Z
zengyawen 已提交
215

@
@shi-xiaoxiao-iris 已提交
216
## PublishInfo<sup>9+</sup>
S
summer8999 已提交
217 218 219 220 221

发布设备参数

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
222
| 名称          | 类型                              | 必填   | 说明                |
S
summer8999 已提交
223 224 225 226 227
| ------------- | --------------------------------- | ---- | ----------------- |
| publishId     | number                            | 是    | 发布设备标识,用于标识不同的发布周期。 |
| mode          | [DiscoverMode ](#discovermode)    | 是    | 发现模式。             |
| freq          | [ExchangeFreq](#exchangefreq)     | 是    | 发现频率。             |
| ranging       | boolean                           | 是    | 发布的设备是否支持测距能力。             |
Z
zengyawen 已提交
228 229

## DeviceManager
Z
zengyawen 已提交
230 231 232

设备管理实例,用于获取可信设备和本地设备的相关信息。在调用DeviceManager的方法前,需要先通过createDeviceManager构建一个DeviceManager实例dmInstance。

Z
zengyawen 已提交
233
### release
Z
zengyawen 已提交
234

Z
zengyawen 已提交
235
release(): void
Z
zengyawen 已提交
236

Z
zengyawen 已提交
237
设备管理实例不再使用后,通过该方法释放DeviceManager实例。
Z
zengyawen 已提交
238

239 240
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
241
**错误码:**
@
@shi-xiaoxiao-iris 已提交
242

@
@shi-xiaoxiao-iris 已提交
243
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
244

@
@shi-xiaoxiao-iris 已提交
245
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
246 247
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
248

@
@shi-xiaoxiao-iris 已提交
249
**示例:**
@
@shi-xiaoxiao-iris 已提交
250

251
  ```js
252 253 254
  try {
    dmInstance.release();
  } catch (err) {
255
    console.error("release errCode:" + err.code + ",errMessage:" + err.message);
256
  }
Z
zengyawen 已提交
257
  ```
Z
zengyawen 已提交
258

Z
zengyawen 已提交
259
### getTrustedDeviceListSync
Z
zengyawen 已提交
260

Z
zengyawen 已提交
261
getTrustedDeviceListSync(): Array&lt;DeviceInfo&gt;
Z
zengyawen 已提交
262 263 264

同步获取所有可信设备列表。

265 266
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
267
**返回值:**
@
@shi-xiaoxiao-iris 已提交
268

H
HelloCrease 已提交
269 270
  | 名称                                     | 说明        |
  | -------------------------------------- | --------- |
Z
zengyawen 已提交
271 272
  | Array&lt;[DeviceInfo](#deviceinfo)&gt; | 返回可信设备列表。 |

@
@shi-xiaoxiao-iris 已提交
273
**错误码:**
@
@shi-xiaoxiao-iris 已提交
274

@
@shi-xiaoxiao-iris 已提交
275
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
276

@
@shi-xiaoxiao-iris 已提交
277
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
278 279
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
280

@
@shi-xiaoxiao-iris 已提交
281
**示例:**
@
@shi-xiaoxiao-iris 已提交
282

283
  ```js
284 285 286
  try {
    var deviceInfoList = dmInstance.getTrustedDeviceListSync();
  } catch (err) {
287
    console.error("getTrustedDeviceListSync errCode:" + err.code + ",errMessage:" + err.message);
288
  }
Z
zengyawen 已提交
289
  ```
Z
zengyawen 已提交
290

291 292 293 294 295 296 297 298
### getTrustedDeviceList<sup>8+</sup>

getTrustedDeviceList(callback:AsyncCallback&lt;Array&lt;DeviceInfo&gt;&gt;): void

获取所有可信设备列表。使用callback异步回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
299
**参数:**
@
@shi-xiaoxiao-iris 已提交
300

@
@shi-xiaoxiao-iris 已提交
301
  | 参数名       | 类型                                     | 必填   | 说明                    |
H
HelloCrease 已提交
302 303
  | -------- | ---------------------------------------- | ---- | --------------------- |
  | callback | AsyncCallback&lt;Array&lt;[DeviceInfo](#deviceinfo)&gt;&gt; | 是    | 获取所有可信设备列表的回调,返回设备信息。 |
304

@
@shi-xiaoxiao-iris 已提交
305
**错误码:**
@
@shi-xiaoxiao-iris 已提交
306

@
@shi-xiaoxiao-iris 已提交
307
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
308

@
@shi-xiaoxiao-iris 已提交
309
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
310 311
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
312

@
@shi-xiaoxiao-iris 已提交
313
**示例:**
@
@shi-xiaoxiao-iris 已提交
314

315
  ```js
316 317 318
  try {
    dmInstance.getTrustedDeviceList((err, data) => {
      if (err) {
319
        console.error("getTrustedDeviceList errCode:" + err.code + ",errMessage:" + err.message);
320 321
        return;
      }
322
      console.log('get trusted device info: ' + JSON.stringify(data));
323
    });
324
  } catch (err) {
325
    console.error("getTrustedDeviceList errCode:" + err.code + ",errMessage:" + err.message);
326
  }
327 328 329 330 331 332 333 334 335 336
  ```

### getTrustedDeviceList<sup>8+</sup>

getTrustedDeviceList(): Promise&lt;Array&lt;DeviceInfo&gt;&gt;

获取所有可信设备列表。使用Promise异步回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
337
**返回值:**
@
@shi-xiaoxiao-iris 已提交
338

H
HelloCrease 已提交
339 340
  | 类型                                       | 说明                    |
  | ---------------------------------------- | --------------------- |
341 342
  | Promise&lt;Array&lt;[DeviceInfo](#deviceinfo)&gt;&gt; | Promise实例,用于获取异步返回结果。 |

@
@shi-xiaoxiao-iris 已提交
343
**错误码:**
@
@shi-xiaoxiao-iris 已提交
344

@
@shi-xiaoxiao-iris 已提交
345
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
346

@
@shi-xiaoxiao-iris 已提交
347
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
348 349
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
350

@
@shi-xiaoxiao-iris 已提交
351
**示例:**
@
@shi-xiaoxiao-iris 已提交
352

353
  ```js
354 355 356
  dmInstance.getTrustedDeviceList().then((data) => {
    console.log('get trusted device info: ' + JSON.stringify(data));
    }).catch((err) => {
357
      console.error("getTrustedDeviceList errCode:" + err.code + ",errMessage:" + err.message);
358
  });
359 360 361 362 363 364 365 366 367 368
  ```

### getLocalDeviceInfoSync<sup>8+</sup>

getLocalDeviceInfoSync(): [DeviceInfo](#deviceinfo)

同步获取本地设备信息。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
369
**返回值:**
@
@shi-xiaoxiao-iris 已提交
370

371 372 373
  | 名称                      | 说明              |
  | ------------------------- | ---------------- |
  | [DeviceInfo](#deviceinfo) | 返回本地设备列表。 |
374

@
@shi-xiaoxiao-iris 已提交
375
**错误码:**
@
@shi-xiaoxiao-iris 已提交
376

@
@shi-xiaoxiao-iris 已提交
377
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
378

@
@shi-xiaoxiao-iris 已提交
379
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
380 381
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
382

@
@shi-xiaoxiao-iris 已提交
383
**示例:**
@
@shi-xiaoxiao-iris 已提交
384

385
  ```js
386 387 388
  try {
    var deviceInfo = dmInstance.getLocalDeviceInfoSync();
  } catch (err) {
389
    console.error("getLocalDeviceInfoSync errCode:" + err.code + ",errMessage:" + err.message);
390
  }
391 392 393 394 395 396 397 398 399 400
  ```

### getLocalDeviceInfo<sup>8+</sup>

getLocalDeviceInfo(callback:AsyncCallback&lt;DeviceInfo&gt;): void

获取本地设备信息。使用callback异步回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
401
**参数:**
@
@shi-xiaoxiao-iris 已提交
402

@
@shi-xiaoxiao-iris 已提交
403
  | 参数名       | 类型                                     | 必填   | 说明        |
H
HelloCrease 已提交
404 405
  | -------- | ---------------------------------------- | ---- | --------- |
  | callback | AsyncCallback&lt;[DeviceInfo](#deviceinfo)&gt; | 是    | 获取本地设备信息。 |
406

@
@shi-xiaoxiao-iris 已提交
407
**错误码:**
@
@shi-xiaoxiao-iris 已提交
408

@
@shi-xiaoxiao-iris 已提交
409
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
410

@
@shi-xiaoxiao-iris 已提交
411
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
412 413
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
414

@
@shi-xiaoxiao-iris 已提交
415
**示例:**
@
@shi-xiaoxiao-iris 已提交
416

417
  ```js
418
  try {
419
    dmInstance.getLocalDeviceInfo((err, data) => {
420
    if (err) {
421
      console.error("getLocalDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
422
      return;
423
    }
424 425 426
      console.log('get local device info: ' + JSON.stringify(data));
    });
  } catch (err) {
427
    console.error("getLocalDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
428
  }
429 430 431 432 433 434 435 436 437 438
  ```

### getLocalDeviceInfo<sup>8+</sup>

getLocalDeviceInfo(): Promise&lt;DeviceInfo&gt;

获取本地设备信息。使用Promise异步回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
439 440
**返回值:**

H
HelloCrease 已提交
441 442
  | 类型                                       | 说明                    |
  | ---------------------------------------- | --------------------- |
443 444
  | Promise&lt;[DeviceInfo](#deviceinfo)&gt; | Promise实例,用于获取异步返回结果。 |

@
@shi-xiaoxiao-iris 已提交
445
**错误码:**
@
@shi-xiaoxiao-iris 已提交
446

@
@shi-xiaoxiao-iris 已提交
447
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
448

@
@shi-xiaoxiao-iris 已提交
449
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
450 451 452
| ------- | --------------------------------------------------------------- |
| 11600101| Failed to execute the function.                                 |

@
@shi-xiaoxiao-iris 已提交
453
**示例:**
@
@shi-xiaoxiao-iris 已提交
454

455
  ```js
456 457 458
  dmInstance.getLocalDeviceInfo().then((data) => {
    console.log('get local device info: ' + JSON.stringify(data));
  }).catch((err) => {
459
    console.error("getLocalDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
460
  });
461 462
  ```

S
summer8999 已提交
463 464
### getDeviceInfo<sup>10+</sup>

S
summer8999 已提交
465
getDeviceInfo(networkId: string, callback:AsyncCallback&lt;DeviceInfo&gt;): void
S
summer8999 已提交
466

S
summer8999 已提交
467
通过指定设备的网络标识获取该设备的信息。使用callback异步回调。
S
summer8999 已提交
468 469 470 471 472 473 474

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

**参数:**

  | 参数名       | 类型                                     | 必填   | 说明        |
  | -------- | ---------------------------------------- | ---- | --------- |
S
summer8999 已提交
475
  | networkId| string                                   | 是   | 设备的网络标识。 |
S
summer8999 已提交
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
  | callback | AsyncCallback&lt;[DeviceInfo](#deviceinfo)&gt; | 是    | 获取指定设备信息。 |

**错误码:**

以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)

| 错误码ID | 错误信息                                                        |
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |

**示例:**

  ```js
  try {
    dmInstance.getDeviceInfo(networkId, (err, data) => {
    if (err) {
      console.error("getDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
      return;
    }
      console.log('get device info: ' + JSON.stringify(data));
    });
  } catch (err) {
    console.error("getDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
  }
  ```

### getDeviceInfo<sup>10+</sup>

S
summer8999 已提交
504
getDeviceInfo(networkId: string): Promise&lt;DeviceInfo&gt;
S
summer8999 已提交
505

S
summer8999 已提交
506
通过指定设备的网络标识获取该设备的信息。使用Promise异步回调。
S
summer8999 已提交
507 508 509

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

S
summer8999 已提交
510 511 512 513 514 515
**参数:**

  | 参数名   | 类型                                     | 必填 | 说明        |
  | -------- | ---------------------------------------- | ---- | --------- |
  | networkId| string                                   | 是   | 设备的网络标识。 |
  
S
summer8999 已提交
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
**返回值:**

  | 类型                                       | 说明                    |
  | ---------------------------------------- | --------------------- |
  | Promise&lt;[DeviceInfo](#deviceinfo)&gt; | Promise实例,用于获取异步返回结果。 |

**错误码:**

以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)

| 错误码ID | 错误信息                                                        |
| ------- | --------------------------------------------------------------- |
| 11600101| Failed to execute the function.                                 |

**示例:**

  ```js
  dmInstance.getDeviceInfo(networkId).then((data) => {
    console.log('get device info: ' + JSON.stringify(data));
  }).catch((err) => {
    console.error("getDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
  });
  ```

@
@shi-xiaoxiao-iris 已提交
540
### startDeviceDiscovery<sup>8+</sup>
541 542 543 544 545 546 547

startDeviceDiscovery(subscribeInfo: SubscribeInfo): void

发现周边设备。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
548
**参数:**
@
@shi-xiaoxiao-iris 已提交
549

@
@shi-xiaoxiao-iris 已提交
550
  | 参数名            | 类型                       | 必填 | 说明    |
H
HelloCrease 已提交
551
  | ------------- | ------------------------------- | ---- | ----- |
552
  | subscribeInfo | [SubscribeInfo](#subscribeinfo) | 是   | 发现信息。|
553

@
@shi-xiaoxiao-iris 已提交
554
**错误码:**
@
@shi-xiaoxiao-iris 已提交
555

@
@shi-xiaoxiao-iris 已提交
556
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
557

@
@shi-xiaoxiao-iris 已提交
558
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
559 560 561 562
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600104 | Discovery invalid.                                              |

@
@shi-xiaoxiao-iris 已提交
563
**示例:**
@
@shi-xiaoxiao-iris 已提交
564

565
  ```js
566
  // 生成发现标识,随机数确保每次调用发现接口的标识不一致
567 568 569
  var subscribeId = Math.floor(Math.random() * 10000 + 1000);
  var subscribeInfo = {
      "subscribeId": subscribeId,
570 571 572
      "mode": 0xAA, // 主动模式
      "medium": 0,  // 自动发现类型,同时支持多种发现类型
      "freq": 2,    // 高频率
573 574 575 576
      "isSameAccount": false,
      "isWakeRemote": false,
      "capability": 1
  };
577 578 579
  try {
    dmInstance.startDeviceDiscovery(subscribeInfo); // 当有设备发现时,通过deviceFound回调通知给应用程序
  } catch (err) {
580
    console.error("startDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
581
  }
582 583
  ```

@
@shi-xiaoxiao-iris 已提交
584
### startDeviceDiscovery<sup>9+</sup>
S
summer8999 已提交
585

S
summer8999 已提交
586
startDeviceDiscovery(subscribeInfo: SubscribeInfo, filterOptions?: string): void
S
summer8999 已提交
587 588 589 590 591

发现周边设备。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
592
**参数:**
@
@shi-xiaoxiao-iris 已提交
593

@
@shi-xiaoxiao-iris 已提交
594
  | 参数名            | 类型                       | 必填   | 说明    |
595
  | ------------- | ------------------------------- | ---- | -----  |
S
summer8999 已提交
596
  | subscribeInfo | [SubscribeInfo](#subscribeinfo) | 是   | 发现信息。 |
597
  | filterOptions | string                          | 否   | 发现设备过滤信息。|
S
summer8999 已提交
598

@
@shi-xiaoxiao-iris 已提交
599
**错误码:**
@
@shi-xiaoxiao-iris 已提交
600

@
@shi-xiaoxiao-iris 已提交
601
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
602

@
@shi-xiaoxiao-iris 已提交
603
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
604 605 606 607
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600104 | Discovery invalid.                                              |

@
@shi-xiaoxiao-iris 已提交
608
**示例:**
@
@shi-xiaoxiao-iris 已提交
609

S
summer8999 已提交
610
  ```js
611
  // 生成发现标识,随机数确保每次调用发现接口的标识不一致
S
summer8999 已提交
612 613 614
  var subscribeId = Math.floor(Math.random() * 10000 + 1000);
  var subscribeInfo = {
      "subscribeId": subscribeId,
615 616 617
      "mode": 0xAA, // 主动模式
      "medium": 0,  // 自动发现类型,同时支持多种发现类型
      "freq": 2,    // 高频率
S
summer8999 已提交
618 619 620 621 622
      "isSameAccount": false,
      "isWakeRemote": false,
      "capability": 1
  };
  var filterOptions = {
S
summer8999 已提交
623
    "filter_op": "OR", // 可选, 默认"OR"
S
summer8999 已提交
624 625 626
    "filters": [
        {
            "type": "range",
S
summer8999 已提交
627
            "value": 50 // 需过滤发现设备的距离,单位(cm)
S
summer8999 已提交
628 629
        }
    ]
S
summer8999 已提交
630
  };
631 632 633
  try {
    dmInstance.startDeviceDiscovery(subscribeInfo, JSON.stringify(filterOptions)); // 当有设备发现时,通过deviceFound回调通知给应用程序
  } catch (err) {
634
    console.error("startDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
635
  }
S
summer8999 已提交
636
  ```
@
@shi-xiaoxiao-iris 已提交
637

638 639 640 641 642 643 644 645
### stopDeviceDiscovery

stopDeviceDiscovery(subscribeId: number): void

停止发现周边设备。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
646
**参数:**
@
@shi-xiaoxiao-iris 已提交
647

@
@shi-xiaoxiao-iris 已提交
648
  | 参数名          | 类型   | 必填   | 说明    |
H
HelloCrease 已提交
649 650
  | ----------- | ------ | ---- | ----- |
  | subscribeId | number | 是    | 发现标识。 |
651

@
@shi-xiaoxiao-iris 已提交
652
**错误码:**
@
@shi-xiaoxiao-iris 已提交
653

@
@shi-xiaoxiao-iris 已提交
654
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
655

@
@shi-xiaoxiao-iris 已提交
656
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
657 658
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
659

@
@shi-xiaoxiao-iris 已提交
660
**示例:**
@
@shi-xiaoxiao-iris 已提交
661

662
  ```js
663
  try {
664 665
    // stopDeviceDiscovery和startDeviceDiscovery需配对使用,入参需要和startDeviceDiscovery接口传入的subscribeId值相等
    var subscribeId = 12345;
666 667
    dmInstance.stopDeviceDiscovery(subscribeId);
  } catch (err) {
668
    console.error("stopDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
669
  }
670 671
  ```

@
@shi-xiaoxiao-iris 已提交
672
### publishDeviceDiscovery<sup>9+</sup>
S
summer8999 已提交
673

S
summer8999 已提交
674
publishDeviceDiscovery(publishInfo: PublishInfo): void
S
summer8999 已提交
675

S
summer8999 已提交
676
发布设备发现。
S
summer8999 已提交
677 678 679

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
680
**参数:**
@
@shi-xiaoxiao-iris 已提交
681

@
@shi-xiaoxiao-iris 已提交
682
  | 参数名          | 类型                        | 必填 | 说明    |
S
summer8999 已提交
683 684 685
  | ------------- | ------------------------------- | ---- | ----- |
  | publishInfo   | [PublishInfo](#publishinfo)     | 是   | 发布设备发现信息。 |

@
@shi-xiaoxiao-iris 已提交
686
**错误码:**
@
@shi-xiaoxiao-iris 已提交
687

@
@shi-xiaoxiao-iris 已提交
688
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
689

@
@shi-xiaoxiao-iris 已提交
690
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
691 692 693
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600105 | Publish invalid.                                                |
@
@shi-xiaoxiao-iris 已提交
694

@
@shi-xiaoxiao-iris 已提交
695
**示例:**
@
@shi-xiaoxiao-iris 已提交
696

S
summer8999 已提交
697
  ```js
698
  // 生成发布标识,随机数确保每次调用发布接口的标识不一致
S
summer8999 已提交
699
  var publishId = Math.floor(Math.random() * 10000 + 1000);
S
summer8999 已提交
700
  var publishInfo = {
S
summer8999 已提交
701
      "publishId": publishId,
702 703
      "mode": 0xAA, // 主动模式
      "freq": 2,    // 高频率
704
      "ranging": true  // 支持发现时测距
S
summer8999 已提交
705
  };
706 707 708
  try {
    dmInstance.publishDeviceDiscovery(publishInfo); // 当有发布结果时,通过回调通知给应用程序
  } catch (err) {
709
    console.error("publishDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
710
  }
S
summer8999 已提交
711
  ```
712

@
@shi-xiaoxiao-iris 已提交
713
### unPublishDeviceDiscovery<sup>9+</sup>
S
summer8999 已提交
714

S
summer8999 已提交
715
unPublishDeviceDiscovery(publishId: number): void
S
summer8999 已提交
716 717 718 719 720

停止发布设备发现。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
721
**参数:**
@
@shi-xiaoxiao-iris 已提交
722

@
@shi-xiaoxiao-iris 已提交
723
  | 参数名        | 类型 | 必填 | 说明  |
S
summer8999 已提交
724 725
  | ----------- | -------- | ---- | ----- |
  | publishId   | number   | 是   | 发布标识。 |
S
summer8999 已提交
726

@
@shi-xiaoxiao-iris 已提交
727
**错误码:**
@
@shi-xiaoxiao-iris 已提交
728

@
@shi-xiaoxiao-iris 已提交
729
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
730

@
@shi-xiaoxiao-iris 已提交
731
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
732 733
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
734

@
@shi-xiaoxiao-iris 已提交
735
**示例:**
@
@shi-xiaoxiao-iris 已提交
736

S
summer8999 已提交
737
  ```js
738
  try {
739 740
    // unPublishDeviceDiscovery和publishDeviceDiscovery配对使用,入参需要和publishDeviceDiscovery接口传入的publishId值相等
    var publishId = 12345;
741
    dmInstance.unPublishDeviceDiscovery(publishId);
742
  } catch (err) {
743
    console.error("unPublishDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
744
  }
S
summer8999 已提交
745 746
  ```

747 748
### authenticateDevice

749
authenticateDevice(deviceInfo: DeviceInfo, authParam: AuthParam, callback: AsyncCallback&lt;{deviceId: string, pinToken ?: number}&gt;): void
750 751 752 753 754

认证设备。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
755
**参数:**
@
@shi-xiaoxiao-iris 已提交
756

@
@shi-xiaoxiao-iris 已提交
757
  | 参数名         | 类型                                     | 必填   | 说明      |
H
HelloCrease 已提交
758 759 760
  | ---------- | ---------------------------------------- | ---- | ------- |
  | deviceInfo | [DeviceInfo](#deviceinfo)                | 是    | 设备信息。   |
  | authParam  | [AuthParam](#authparam)                  | 是    | 认证参数。   |
761
  | callback   | AsyncCallback&lt;{deviceId:&nbsp;string,&nbsp;pinToken&nbsp;?:&nbsp;number}&gt; | 是    | 认证结果回调。 |
762

@
@shi-xiaoxiao-iris 已提交
763
**错误码:**
@
@shi-xiaoxiao-iris 已提交
764

@
@shi-xiaoxiao-iris 已提交
765
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
766

@
@shi-xiaoxiao-iris 已提交
767
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
768 769 770
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600103 | Authentication invalid.                                         |
@
@shi-xiaoxiao-iris 已提交
771

@
@shi-xiaoxiao-iris 已提交
772
**示例:**
@
@shi-xiaoxiao-iris 已提交
773

774
  ```js
775
  // 认证的设备信息,可以从发现的结果中获取
776 777 778
  var deviceInfo ={
      "deviceId": "XXXXXXXX",
      "deviceName": "",
779 780 781
      "deviceType": 0x0E,
      "networkId" : "xxxxxxx",
      "range" : 0
782
  };
783 784 785 786 787
  let extraInfo = {
          'targetPkgName': 'ohos.samples.xxx',
          'appName': 'xxx',
          'appDescription': 'xxx',
          'business': '0'
788
  }
789
  let authParam = {
790 791
      'authType': 1,// 认证类型: 1 - 无帐号PIN码认证
      'extraInfo': extraInfo
792
  }
793 794
  try {
    dmInstance.authenticateDevice(deviceInfo, authParam, (err, data) => {
795
      if (err) {
796
          console.error("authenticateDevice errCode:" + err.code + ",errMessage:" + err.message);
797 798
          return;
      }
@
@shi-xiaoxiao-iris 已提交
799 800
      console.info("authenticateDevice result:" + JSON.stringify(data));
      let token = data.pinToken;
801 802
    });
  } catch (err) {
803
    console.error("authenticateDevice errCode:" + err.code + ",errMessage:" + err.message);
804
  }
805 806 807 808 809 810 811 812 813 814
  ```

### unAuthenticateDevice<sup>8+</sup>

unAuthenticateDevice(deviceInfo: DeviceInfo): void

解除认证设备。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
815
**参数:**
@
@shi-xiaoxiao-iris 已提交
816

@
@shi-xiaoxiao-iris 已提交
817
  | 参数名         | 类型                      | 必填   | 说明    |
H
HelloCrease 已提交
818 819
  | ---------- | ------------------------- | ---- | ----- |
  | deviceInfo | [DeviceInfo](#deviceinfo) | 是    | 设备信息。 |
820

@
@shi-xiaoxiao-iris 已提交
821
**错误码:**
@
@shi-xiaoxiao-iris 已提交
822

@
@shi-xiaoxiao-iris 已提交
823
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
824

@
@shi-xiaoxiao-iris 已提交
825
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
826 827
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
828

@
@shi-xiaoxiao-iris 已提交
829
**示例:**
@
@shi-xiaoxiao-iris 已提交
830

831
  ```js
832
  try {
833 834 835 836 837 838 839
    var deviceInfo ={
      "deviceId": "XXXXXXXX",
      "deviceName": "",
      "deviceType": 0x0E,
      "networkId" : "xxxxxxx",
      "range" : 0
    };
840 841
    dmInstance.unAuthenticateDevice(deviceInfo);
  } catch (err) {
842
    console.error("unAuthenticateDevice errCode:" + err.code + ",errMessage:" + err.message);
843
  }
844 845 846 847
  ```

### verifyAuthInfo

848
verifyAuthInfo(authInfo: AuthInfo, callback: AsyncCallback&lt;{deviceId: string, level: number}&gt;): void
849 850 851 852 853

验证认证信息。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
854
**参数:**
@
@shi-xiaoxiao-iris 已提交
855

@
@shi-xiaoxiao-iris 已提交
856
  | 参数名       | 类型                                     | 必填   | 说明      |
H
HelloCrease 已提交
857 858
  | -------- | ---------------------------------------- | ---- | ------- |
  | authInfo | [AuthInfo](#authinfo)                    | 是    | 认证信息。   |
859
  | callback | AsyncCallback&lt;{deviceId:&nbsp;string,&nbsp;level:&nbsp;number}&gt; | 是    | 验证结果回调。 |
860

@
@shi-xiaoxiao-iris 已提交
861
**错误码:**
@
@shi-xiaoxiao-iris 已提交
862

@
@shi-xiaoxiao-iris 已提交
863
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
864

@
@shi-xiaoxiao-iris 已提交
865
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
866 867
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
868

@
@shi-xiaoxiao-iris 已提交
869
**示例:**
@
@shi-xiaoxiao-iris 已提交
870

871 872 873
  ```js
  let authInfo = {
    "authType": 1,
874
    "token": 123456,
875 876
    "extraInfo": {}
  }
877 878
  try {
    dmInstance.verifyAuthInfo(authInfo, (err, data) => {
879
    if (err) {
880
        console.error("verifyAuthInfo errCode:" + err.code + ",errMessage:" + err.message);
881 882
        return;
    }
@
@shi-xiaoxiao-iris 已提交
883
    console.info("verifyAuthInfo result:" + JSON.stringify(data));
884 885
    });
  } catch (err) {
886
    console.error("verifyAuthInfo errCode:" + err.code + ",errMessage:" + err.message);
887
  }
888 889
  ```

@
@shi-xiaoxiao-iris 已提交
890
### setUserOperation<sup>9+</sup>
@
@shi-xiaoxiao-iris 已提交
891 892 893 894 895 896 897

setUserOperation(operateAction: number, params: string): void;

设置用户ui操作行为。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
898
**参数:**
@
@shi-xiaoxiao-iris 已提交
899

@
@shi-xiaoxiao-iris 已提交
900
  | 参数名       | 类型            | 必填  | 说明                |
901 902 903
  | ------------- | --------------- | ---- | ------------------- |
  | operateAction | number          | 是    | 用户操作动作。       |
  | params        | string          | 是    | 表示用户的输入参数。 |
@
@shi-xiaoxiao-iris 已提交
904

@
@shi-xiaoxiao-iris 已提交
905
**示例:**
@
@shi-xiaoxiao-iris 已提交
906 907

  ```js
@
@shi-xiaoxiao-iris 已提交
908 909 910 911 912 913 914 915 916 917
 try {
    /*
      operateAction = 0 - 允许授权
      operateAction = 1 - 取消授权
      operateAction = 2 - 授权框用户操作超时
      operateAction = 3 - 取消pin码框展示
      operateAction = 4 - 取消pin码输入框展示
      operateAction = 5 - pin码输入框确定操作
    */
    let operation = 0;
918
    dmInstance.setUserOperation(operation, "extra")
@
@shi-xiaoxiao-iris 已提交
919 920
    } catch (err) {
      console.error("setUserOperation errCode:" + err.code + ",errMessage:" + err.message);
@
@shi-xiaoxiao-iris 已提交
921 922 923
  }
  ```

W
wuqi0105 已提交
924
### requestCredentialRegisterInfo<sup>10+</sup>
W
wuqi0105 已提交
925

W
wuqi0105 已提交
926
requestCredentialRegisterInfo(requestInfo: string, callback: AsyncCallback<{registerInfo: string}>): void;
W
wuqi0105 已提交
927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946

获取凭据的注册信息。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

**参数:**

  | 参数名       | 类型            | 必填  | 说明                |
  | ------------- | --------------- | ---- | ------------------- |
  | requestInfo   | string          | 是    | 请求凭据信息。       |
  | callback      | AsyncCallback<{registerInfo: string}>         | 是    | 凭据的注册信息回调。 |

**示例:**

  ```js
  let credentialInfo = {
    "version" : "1.2.3",
    "userId" : "123"
  }
  try {
W
wuqi0105 已提交
947
    dmClass.requestCredentialRegisterInfo(credentialInfo, (data) => {
W
wuqi0105 已提交
948
      if (data) {
W
wuqi0105 已提交
949
          console.info("requestCredentialRegisterInfo result:" + JSON.stringify(data));
W
wuqi0105 已提交
950
      } else {
W
wuqi0105 已提交
951
          console.info.push("requestCredentialRegisterInfo result: data is null");
W
wuqi0105 已提交
952 953 954
      }
    });
  } catch (err) {
W
wuqi0105 已提交
955
    console.error("requestCredentialRegisterInfo err:" + err.code + "," + err.message);
W
wuqi0105 已提交
956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
  }
  ```

### importCredential<sup>10+</sup>

importCredential(credentialInfo: string, callback: AsyncCallback<{resultInfo: string}>): void;

导入凭据信息。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

**参数:**

  | 参数名       | 类型            | 必填  | 说明                |
  | ------------- | --------------- | ---- | ------------------- |
  | credentialInfo| string          | 是    | 导入凭据信息。       |
  | callback      | AsyncCallback<{resultInfo: string}>           | 是    | 导入凭据结果回调。 |

**示例:**

  ```js
  let credentialInfo = {
    "processType" : 1,
    "authType" : 1,
    "userId" : "123",
    "deviceId" : "aaa",
    "version" : "1.2.3",
    "devicePk" : "0000",
    "credentialData" : 
    [
      {
        "credentialType" : 2,
        "credentialId" : "102",
        "serverPk" : "3059301306072A8648CE3D020106082A8648CE3D03",
        "pkInfoSignature" : "30440220490BCB4F822004C9A76AB8D97F80041FC0E",
        "pkInfo" : "",
        "authCode" : "",
        "peerDeviceId" : ""
      }
    ]
  }
  try {
    dmClass.importCredential(credentialInfo, (data) => {
      if (data) {
          console.info("importCredential result:" + JSON.stringify(data));
      } else {
          console.info.push("importCredential result: data is null");
      }
    });
  } catch (err) {
    console.error("importCredential err:" + err.code + "," + err.message);
  }
  ```

### deleteCredential<sup>10+</sup>

deleteCredential(queryInfo: string, callback: AsyncCallback<{resultInfo: string}>): void;

删除凭据信息。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

**参数:**

  | 参数名       | 类型            | 必填  | 说明                |
  | ------------- | --------------- | ---- | ------------------- |
  | queryInfo     | string          | 是    | 删除凭据信息。       |
  | callback      | AsyncCallback<{resultInfo: string}>           | 是    | 删除凭据结果回调。 |

**示例:**

  ```js
  let queryInfo = {
    "processType" : 1,
    "authType" : 1,
    "userId" : "123"
  }
  try {
    dmClass.deleteCredential(queryInfo, (data) => {
      if (data) {
          console.info("deleteCredential result:" + JSON.stringify(data));
      } else {
          console.info.push("deleteCredential result: data is null");
      }
    });
  } catch (err) {
    console.error("deleteCredential err:" + err.code + "," + err.message);
  }
  ```

@
@shi-xiaoxiao-iris 已提交
1046
### on('uiStateChange')<sup>9+</sup>
@
@shi-xiaoxiao-iris 已提交
1047

1048
on(type: 'uiStateChange', callback: Callback&lt;{ param: string}&gt;): void;
@
@shi-xiaoxiao-iris 已提交
1049 1050 1051 1052 1053

ui状态变更回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1054
**参数:**
@
@shi-xiaoxiao-iris 已提交
1055

@
@shi-xiaoxiao-iris 已提交
1056
  | 参数名      | 类型                             | 必填 | 说明                            |
@
@shi-xiaoxiao-iris 已提交
1057 1058
  | -------- | ------------------------------------ | ---- | ------------------------------ |
  | type     | string                                | 是  | 注册的设备管理器 ui 状态回调,以便在状态改变时通知应用。 |
1059
  | callback | Callback&lt;{&nbsp;param:&nbsp;string}&gt; | 是  | 指示要注册的设备管理器 ui 状态回调,返回ui状态。        |
@
@shi-xiaoxiao-iris 已提交
1060

@
@shi-xiaoxiao-iris 已提交
1061
**示例:**
@
@shi-xiaoxiao-iris 已提交
1062 1063 1064

  ```js
  try {
@
@shi-xiaoxiao-iris 已提交
1065
    dmInstance.on('uiStateChange', (data) => {
@
@shi-xiaoxiao-iris 已提交
1066 1067
    console.log("uiStateChange executed, dialog closed" + JSON.stringify(data))
    var tmpStr = JSON.parse(data.param)
1068 1069
    var isShow = tmpStr.verifyFailed
    console.log("uiStateChange executed, dialog closed" + isShow)
@
@shi-xiaoxiao-iris 已提交
1070 1071 1072 1073 1074 1075
  });
  } catch (err) {
    console.error("uiStateChange errCode:" + err.code + ",errMessage:" + err.message);
  }
  ```

@
@shi-xiaoxiao-iris 已提交
1076
### off('uiStateChange')<sup>9+</sup>
@
@shi-xiaoxiao-iris 已提交
1077

1078
off(type: 'uiStateChange', callback?: Callback&lt;{ param: string}&gt;): void;
@
@shi-xiaoxiao-iris 已提交
1079

1080 1081
取消ui状态变更回调。

@
@shi-xiaoxiao-iris 已提交
1082 1083
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1084
**参数:**
@
@shi-xiaoxiao-iris 已提交
1085

@
@shi-xiaoxiao-iris 已提交
1086
  | 参数名      | 类型                              | 必填 | 说明                            |
@
@shi-xiaoxiao-iris 已提交
1087 1088
  | -------- | ------------------------------------- | ---- | ------------------------------ |
  | type     | string                                | 是   | 取消注册的设备管理器 ui 状态回调。 |
1089
  | callback | Callback&lt;{&nbsp;param:&nbsp;string}&gt; | 否   | 指示要取消注册的设备管理器 ui 状态,返回UI状态。 |
@
@shi-xiaoxiao-iris 已提交
1090

@
@shi-xiaoxiao-iris 已提交
1091
**示例:**
@
@shi-xiaoxiao-iris 已提交
1092 1093 1094

  ```js
  try {
@
@shi-xiaoxiao-iris 已提交
1095
    dmInstance.off('uiStateChange');
@
@shi-xiaoxiao-iris 已提交
1096 1097 1098 1099 1100
  } catch (err) {
    console.error("uiStateChange errCode:" + err.code + ",errMessage:" + err.message);
  }
  ```

Z
zengyawen 已提交
1101
### on('deviceStateChange')
Z
zengyawen 已提交
1102

1103
on(type: 'deviceStateChange',  callback: Callback&lt;{ action: DeviceStateChangeAction, device: DeviceInfo }&gt;): void
Z
zengyawen 已提交
1104

Z
zengyawen 已提交
1105 1106
注册设备状态回调。

1107 1108
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1109
**参数:**
@
@shi-xiaoxiao-iris 已提交
1110

@
@shi-xiaoxiao-iris 已提交
1111
  | 参数名       | 类型                                     | 必填   | 说明                             |
H
HelloCrease 已提交
1112 1113
  | -------- | ---------------------------------------- | ---- | ------------------------------ |
  | type     | string                                   | 是    | 注册设备状态回调,固定为deviceStateChange。 |
1114
  | callback | Callback&lt;{&nbsp;action:&nbsp;[DeviceStateChangeAction](#devicestatechangeaction),&nbsp;device:&nbsp;[DeviceInfo](#deviceinfo)&nbsp;}&gt; | 是    | 指示要注册的设备状态回调,返回设备状态和设备信息。      |
Z
zengyawen 已提交
1115

@
@shi-xiaoxiao-iris 已提交
1116
**示例:**
@
@shi-xiaoxiao-iris 已提交
1117

1118
  ```js
1119 1120 1121 1122 1123
  try {
    dmInstance.on('deviceStateChange', (data) => {
      console.info("deviceStateChange on:" + JSON.stringify(data));
    });
  } catch (err) {
1124
    console.error("deviceStateChange errCode:" + err.code + ",errMessage:" + err.message);
1125
  }
Z
zengyawen 已提交
1126
  ```
Z
zengyawen 已提交
1127

Z
zengyawen 已提交
1128
### off('deviceStateChange')
Z
zengyawen 已提交
1129

1130
off(type: 'deviceStateChange', callback?: Callback&lt;{ action: DeviceStateChangeAction, device: DeviceInfo }&gt;): void
Z
zengyawen 已提交
1131 1132 1133

取消注册设备状态回调。

1134 1135
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1136
**参数:**
@
@shi-xiaoxiao-iris 已提交
1137

@
@shi-xiaoxiao-iris 已提交
1138
  | 参数名       | 类型                                     | 必填   | 说明                          |
H
HelloCrease 已提交
1139 1140
  | -------- | ---------------------------------------- | ---- | --------------------------- |
  | type     | string                                   | 是    | 根据应用程序的包名取消注册设备状态回调。        |
1141
  | callback | Callback&lt;{&nbsp;action:&nbsp;[DeviceStateChangeAction](#devicestatechangeaction),&nbsp;device:&nbsp;[DeviceInfo](#deviceinfo)&nbsp;}&gt; | 否    | 指示要取消注册的设备状态回调,返回设备状态和设备信息。 |
Z
zengyawen 已提交
1142

@
@shi-xiaoxiao-iris 已提交
1143
**示例:**
@
@shi-xiaoxiao-iris 已提交
1144

1145
  ```js
1146 1147 1148 1149 1150
  try {
    dmInstance.off('deviceStateChange', (data) => {
      console.info('deviceStateChange' + JSON.stringify(data));
    });
  } catch (err) {
1151
    console.error("deviceStateChange errCode:" + err.code + ",errMessage:" + err.message);
1152
  }
Z
zengyawen 已提交
1153 1154
  ```

1155 1156
### on('deviceFound')

1157
on(type: 'deviceFound', callback: Callback&lt;{ subscribeId: number, device: DeviceInfo }&gt;): void
1158 1159 1160 1161 1162

注册发现设备回调监听。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1163
**参数:**
@
@shi-xiaoxiao-iris 已提交
1164

@
@shi-xiaoxiao-iris 已提交
1165
  | 参数名       | 类型                                     | 必填   | 说明                         |
H
HelloCrease 已提交
1166 1167
  | -------- | ---------------------------------------- | ---- | -------------------------- |
  | type     | string                                   | 是    | 注册设备发现回调,以便在发现周边设备时通知应用程序。 |
1168
  | callback | Callback&lt;{&nbsp;subscribeId:&nbsp;number,&nbsp;device:&nbsp;[DeviceInfo](#deviceinfo)&nbsp;}&gt; | 是    | 注册设备发现的回调方法。               |
1169

@
@shi-xiaoxiao-iris 已提交
1170
**示例:**
@
@shi-xiaoxiao-iris 已提交
1171

1172
  ```js
1173 1174 1175 1176 1177
  try {
    dmInstance.on('deviceFound', (data) => {
      console.info("deviceFound:" + JSON.stringify(data));
    });
  } catch (err) {
1178
    console.error("deviceFound errCode:" + err.code + ",errMessage:" + err.message);
1179
  }
1180 1181 1182 1183
  ```

### off('deviceFound')

1184
off(type: 'deviceFound', callback?: Callback&lt;{ subscribeId: number, device: DeviceInfo }&gt;): void
1185 1186 1187 1188 1189

取消注册设备发现回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1190
**参数:**
@
@shi-xiaoxiao-iris 已提交
1191

@
@shi-xiaoxiao-iris 已提交
1192
  | 参数名       | 类型                                     | 必填   | 说明                          |
H
HelloCrease 已提交
1193 1194
  | -------- | ---------------------------------------- | ---- | --------------------------- |
  | type     | string                                   | 是    | 取消注册设备发现回调。                 |
1195
  | callback | Callback&lt;{&nbsp;subscribeId:&nbsp;number,&nbsp;device:&nbsp;[DeviceInfo](#deviceinfo)&nbsp;}&gt; | 否    | 指示要取消注册的设备发现回调,返回设备状态和设备信息。 |
1196

@
@shi-xiaoxiao-iris 已提交
1197
**示例:**
@
@shi-xiaoxiao-iris 已提交
1198

1199
  ```js
1200 1201 1202 1203 1204
  try {
    dmInstance.off('deviceFound', (data) => {
      console.info('deviceFound' + JSON.stringify(data));
    });
  } catch (err) {
1205
    console.error("deviceFound errCode:" + err.code + ",errMessage:" + err.message);
1206
  }
1207 1208 1209 1210
  ```

### on('discoverFail')

1211
on(type: 'discoverFail', callback: Callback&lt;{ subscribeId: number, reason: number }&gt;): void
1212 1213 1214 1215 1216

注册设备发现失败回调监听。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1217
**参数:**
@
@shi-xiaoxiao-iris 已提交
1218

@
@shi-xiaoxiao-iris 已提交
1219
  | 参数名       | 类型                                     | 必填   | 说明                             |
H
HelloCrease 已提交
1220 1221
  | -------- | ---------------------------------------- | ---- | ------------------------------ |
  | type     | string                                   | 是    | 注册设备发现失败回调,以便在发现周边设备失败时通知应用程序。 |
1222
  | callback | Callback&lt;{&nbsp;subscribeId:&nbsp;number,&nbsp;reason:&nbsp;number&nbsp;}&gt; | 是    | 注册设备发现失败的回调方法。                 |
1223

@
@shi-xiaoxiao-iris 已提交
1224
**示例:**
@
@shi-xiaoxiao-iris 已提交
1225

1226
  ```js
1227 1228
  try {
    dmInstance.on('discoverFail', (data) => {
1229
        console.info("discoverFail on:" + JSON.stringify(data));
1230
    });
1231
  } catch (err) {
1232
    console.error("discoverFail errCode:" + err.code + ",errMessage:" + err.message);
1233
  }
1234 1235 1236 1237
  ```

### off('discoverFail')

1238
off(type: 'discoverFail', callback?: Callback&lt;{ subscribeId: number, reason: number }&gt;): void
1239 1240 1241 1242 1243

取消注册设备发现失败回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1244
**参数:**
@
@shi-xiaoxiao-iris 已提交
1245

@
@shi-xiaoxiao-iris 已提交
1246
  | 参数名       | 类型                                     | 必填   | 说明                |
H
HelloCrease 已提交
1247 1248
  | -------- | ---------------------------------------- | ---- | ----------------- |
  | type     | string                                   | 是    | 取消注册设备发现失败回调。     |
1249
  | callback | Callback&lt;{&nbsp;subscribeId:&nbsp;number,&nbsp;reason:&nbsp;number&nbsp;}&gt; | 否    | 指示要取消注册的设备发现失败回调。 |
1250

@
@shi-xiaoxiao-iris 已提交
1251
**示例:**
@
@shi-xiaoxiao-iris 已提交
1252

1253
  ```js
1254 1255 1256 1257 1258
  try {
    dmInstance.off('discoverFail', (data) => {
      console.info('discoverFail' + JSON.stringify(data));
    });
  } catch (err) {
1259
    console.error("discoverFail errCode:" + err.code + ",errMessage:" + err.message);
1260
  }
1261 1262
  ```

@
@shi-xiaoxiao-iris 已提交
1263
### on('publishSuccess')<sup>9+</sup>
S
summer8999 已提交
1264

1265
on(type: 'publishSuccess', callback: Callback&lt;{ publishId: number }&gt;): void
S
summer8999 已提交
1266 1267 1268 1269 1270

注册发布设备发现回调监听。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1271
**参数:**
@
@shi-xiaoxiao-iris 已提交
1272

@
@shi-xiaoxiao-iris 已提交
1273
  | 参数名     | 类型                                 | 必填 | 说明                       |
S
summer8999 已提交
1274
  | -------- | ---------------------------------------- | ---- | -------------------------- |
S
summer8999 已提交
1275
  | type     | string                                   | 是   | 注册发布设备成功回调,以便将发布成功时通知应用程序。 |
1276
  | callback | Callback&lt;{&nbsp;publishId:&nbsp;number&nbsp;}&gt;    | 是   | 注册设备发布成功的回调方法。               |
S
summer8999 已提交
1277

@
@shi-xiaoxiao-iris 已提交
1278

@
@shi-xiaoxiao-iris 已提交
1279
**示例:**
@
@shi-xiaoxiao-iris 已提交
1280

S
summer8999 已提交
1281
  ```js
1282 1283 1284 1285 1286
  try {
    dmInstance.on('publishSuccess', (data) => {
      console.info("publishSuccess:" + JSON.stringify(data));
    });
  } catch (err) {
1287
    console.error("publishSuccess errCode:" + err.code + ",errMessage:" + err.message);
1288
  }
S
summer8999 已提交
1289 1290
  ```

@
@shi-xiaoxiao-iris 已提交
1291
### off('publishSuccess')<sup>9+</sup>
S
summer8999 已提交
1292

1293
off(type: 'publishSuccess', callback?: Callback&lt;{ publishId: number }&gt;): void
S
summer8999 已提交
1294

S
summer8999 已提交
1295
取消注册设备发布成功回调。
S
summer8999 已提交
1296 1297 1298

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1299
**参数:**
@
@shi-xiaoxiao-iris 已提交
1300

@
@shi-xiaoxiao-iris 已提交
1301
  | 参数名     | 类型                                 | 必填 | 说明                          |
S
summer8999 已提交
1302
  | -------- | ---------------------------------------- | ---- | --------------------------- |
S
summer8999 已提交
1303
  | type     | string                                   | 是   | 取消注册设备发布成功回调。                 |
1304
  | callback | Callback&lt;{&nbsp;publishId:&nbsp;number&nbsp;}&gt;    | 否   | 指示要取消注册的设备发布成功回调。 |
S
summer8999 已提交
1305

@
@shi-xiaoxiao-iris 已提交
1306
**示例:**
@
@shi-xiaoxiao-iris 已提交
1307

S
summer8999 已提交
1308
  ```js
1309 1310 1311 1312 1313
  try {
    dmInstance.off('publishSuccess', (data) => {
      console.info('publishSuccess' + JSON.stringify(data));
    });
  } catch (err) {
1314
    console.error("publishSuccess errCode:" + err.code + ",errMessage:" + err.message);
1315
  }
S
summer8999 已提交
1316 1317
  ```

@
@shi-xiaoxiao-iris 已提交
1318
### on('publishFail')<sup>9+</sup>
S
summer8999 已提交
1319

1320
on(type: 'publishFail', callback: Callback&lt;{ publishId: number, reason: number }&gt;): void
S
summer8999 已提交
1321 1322 1323 1324 1325

注册设备发布失败回调监听。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1326
**参数:**
@
@shi-xiaoxiao-iris 已提交
1327

@
@shi-xiaoxiao-iris 已提交
1328
  | 参数名     | 类型                                              | 必填 | 说明                             |
S
summer8999 已提交
1329 1330
  | -------- | ----------------------------------------------------- | ---- | ------------------------------ |
  | type     | string                                                | 是   | 注册设备发布失败回调,以便在发布设备失败时通知应用程序。 |
1331
  | callback | Callback&lt;{&nbsp;publishId:&nbsp;number,&nbsp;reason:&nbsp;number&nbsp;}&gt; | 是   | 注册设备发布失败的回调方法。                 |
S
summer8999 已提交
1332

@
@shi-xiaoxiao-iris 已提交
1333
**示例:**
@
@shi-xiaoxiao-iris 已提交
1334

S
summer8999 已提交
1335
  ```js
1336 1337
  try {
    dmInstance.on('publishFail', (data) => {
1338
      console.info("publishFail on:" + JSON.stringify(data));
1339 1340
    });
  } catch (err) {
1341
    console.error("publishFail errCode:" + err.code + ",errMessage:" + err.message);
1342
  }
S
summer8999 已提交
1343 1344
  ```

@
@shi-xiaoxiao-iris 已提交
1345
### off('publishFail')<sup>9+</sup>
S
summer8999 已提交
1346

1347
off(type: 'publishFail', callback?: Callback&lt;{ publishId: number, reason: number }&gt;): void
S
summer8999 已提交
1348

S
summer8999 已提交
1349
取消注册设备发布失败回调。
S
summer8999 已提交
1350 1351 1352

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1353
**参数:**
@
@shi-xiaoxiao-iris 已提交
1354

@
@shi-xiaoxiao-iris 已提交
1355
  | 参数名     | 类型                                              | 必填 | 说明                |
S
summer8999 已提交
1356 1357
  | -------- | ----------------------------------------------------- | ---- | ----------------- |
  | type     | string                                                | 是   | 取消注册设备发布失败回调。     |
1358
  | callback | Callback&lt;{&nbsp;publishId:&nbsp;number,&nbsp;reason:&nbsp;number&nbsp;}&gt; | 否   | 指示要取消注册设备发布失败回调。 |
S
summer8999 已提交
1359

@
@shi-xiaoxiao-iris 已提交
1360
**示例:**
@
@shi-xiaoxiao-iris 已提交
1361

S
summer8999 已提交
1362
  ```js
1363 1364 1365 1366 1367
  try {
    dmInstance.off('publishFail', (data) => {
      console.info('publishFail' + JSON.stringify(data));
    });
  } catch (err) {
1368
    console.error("publishFail errCode:" + err.code + ",errMessage:" + err.message);
1369
  }
S
summer8999 已提交
1370
  ```
1371

Z
zengyawen 已提交
1372 1373 1374
### on('serviceDie')

on(type: 'serviceDie', callback: () =&gt; void): void
Z
zengyawen 已提交
1375 1376 1377

注册设备管理服务死亡监听。

1378 1379
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1380
**参数:**
@
@shi-xiaoxiao-iris 已提交
1381

@
@shi-xiaoxiao-iris 已提交
1382
  | 参数名       | 类型                    | 必填   | 说明                                       |
H
HelloCrease 已提交
1383 1384 1385
  | -------- | ----------------------- | ---- | ---------------------------------------- |
  | type     | string                  | 是    | 注册serviceDie回调,以便在devicemanager服务异常终止时通知应用程序。 |
  | callback | ()&nbsp;=&gt;&nbsp;void | 是    | 注册serviceDie的回调方法。                       |
Z
zengyawen 已提交
1386

@
@shi-xiaoxiao-iris 已提交
1387
**示例:**
@
@shi-xiaoxiao-iris 已提交
1388

1389
  ```js
1390 1391 1392 1393 1394
  try {
    dmInstance.on("serviceDie", () => {
      console.info("serviceDie on");
    });
  } catch (err) {
1395
    console.error("serviceDie errCode:" + err.code + ",errMessage:" + err.message);
1396
  }
Z
zengyawen 已提交
1397
  ```
Z
zengyawen 已提交
1398

Z
zengyawen 已提交
1399 1400 1401 1402 1403
### off('serviceDie')

off(type: 'serviceDie', callback?: () =&gt; void): void

取消注册设备管理服务死亡监听。
Z
zengyawen 已提交
1404

1405 1406
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1407
**参数:**
@
@shi-xiaoxiao-iris 已提交
1408

@
@shi-xiaoxiao-iris 已提交
1409
  | 参数名       | 类型                    | 必填   | 说明                                       |
H
HelloCrease 已提交
1410 1411 1412
  | -------- | ----------------------- | ---- | ---------------------------------------- |
  | type     | string                  | 是    | 取消注册serviceDie回调,以便在devicemanager服务异常终止时通知应用程序。 |
  | callback | ()&nbsp;=&gt;&nbsp;void | 否    | 取消注册serviceDie的回调方法。                     |
Z
zengyawen 已提交
1413

@
@shi-xiaoxiao-iris 已提交
1414
**示例:**
@
@shi-xiaoxiao-iris 已提交
1415

1416
  ```js
1417 1418 1419 1420 1421
  try {
    dmInstance.off("serviceDie", () => {
      console.info("serviceDie off");
    });
  } catch (err) {
1422
    console.error("serviceDie errCode:" + err.code + ",errMessage:" + err.message);
1423
  }
1424
  ```