js-apis-device-manager.md 49.2 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 475 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

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

**参数:**

  | 参数名       | 类型                                     | 必填   | 说明        |
  | -------- | ---------------------------------------- | ---- | --------- |
  | 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 已提交
503
getDeviceInfo(networkId: string): Promise&lt;DeviceInfo&gt;
S
summer8999 已提交
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532

获取指定设备信息。使用Promise异步回调。

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

**返回值:**

  | 类型                                       | 说明                    |
  | ---------------------------------------- | --------------------- |
  | 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 已提交
533
### startDeviceDiscovery<sup>8+</sup>
534 535 536 537 538 539 540

startDeviceDiscovery(subscribeInfo: SubscribeInfo): void

发现周边设备。

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

@
@shi-xiaoxiao-iris 已提交
541
**参数:**
@
@shi-xiaoxiao-iris 已提交
542

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

@
@shi-xiaoxiao-iris 已提交
547
**错误码:**
@
@shi-xiaoxiao-iris 已提交
548

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

@
@shi-xiaoxiao-iris 已提交
551
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
552 553 554 555
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600104 | Discovery invalid.                                              |

@
@shi-xiaoxiao-iris 已提交
556
**示例:**
@
@shi-xiaoxiao-iris 已提交
557

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

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

S
summer8999 已提交
579
startDeviceDiscovery(subscribeInfo: SubscribeInfo, filterOptions?: string): void
S
summer8999 已提交
580 581 582 583 584

发现周边设备。

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

@
@shi-xiaoxiao-iris 已提交
585
**参数:**
@
@shi-xiaoxiao-iris 已提交
586

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

@
@shi-xiaoxiao-iris 已提交
592
**错误码:**
@
@shi-xiaoxiao-iris 已提交
593

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

@
@shi-xiaoxiao-iris 已提交
596
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
597 598 599 600
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600104 | Discovery invalid.                                              |

@
@shi-xiaoxiao-iris 已提交
601
**示例:**
@
@shi-xiaoxiao-iris 已提交
602

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

631 632 633 634 635 636 637 638
### stopDeviceDiscovery

stopDeviceDiscovery(subscribeId: number): void

停止发现周边设备。

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

@
@shi-xiaoxiao-iris 已提交
639
**参数:**
@
@shi-xiaoxiao-iris 已提交
640

@
@shi-xiaoxiao-iris 已提交
641
  | 参数名          | 类型   | 必填   | 说明    |
H
HelloCrease 已提交
642 643
  | ----------- | ------ | ---- | ----- |
  | subscribeId | number | 是    | 发现标识。 |
644

@
@shi-xiaoxiao-iris 已提交
645
**错误码:**
@
@shi-xiaoxiao-iris 已提交
646

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

@
@shi-xiaoxiao-iris 已提交
649
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
650 651
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
652

@
@shi-xiaoxiao-iris 已提交
653
**示例:**
@
@shi-xiaoxiao-iris 已提交
654

655
  ```js
656
  try {
657 658
    // stopDeviceDiscovery和startDeviceDiscovery需配对使用,入参需要和startDeviceDiscovery接口传入的subscribeId值相等
    var subscribeId = 12345;
659 660
    dmInstance.stopDeviceDiscovery(subscribeId);
  } catch (err) {
661
    console.error("stopDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
662
  }
663 664
  ```

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

S
summer8999 已提交
667
publishDeviceDiscovery(publishInfo: PublishInfo): void
S
summer8999 已提交
668

S
summer8999 已提交
669
发布设备发现。
S
summer8999 已提交
670 671 672

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

@
@shi-xiaoxiao-iris 已提交
673
**参数:**
@
@shi-xiaoxiao-iris 已提交
674

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

@
@shi-xiaoxiao-iris 已提交
679
**错误码:**
@
@shi-xiaoxiao-iris 已提交
680

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

@
@shi-xiaoxiao-iris 已提交
683
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
684 685 686
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600105 | Publish invalid.                                                |
@
@shi-xiaoxiao-iris 已提交
687

@
@shi-xiaoxiao-iris 已提交
688
**示例:**
@
@shi-xiaoxiao-iris 已提交
689

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

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

S
summer8999 已提交
708
unPublishDeviceDiscovery(publishId: number): void
S
summer8999 已提交
709 710 711 712 713

停止发布设备发现。

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

@
@shi-xiaoxiao-iris 已提交
714
**参数:**
@
@shi-xiaoxiao-iris 已提交
715

@
@shi-xiaoxiao-iris 已提交
716
  | 参数名        | 类型 | 必填 | 说明  |
S
summer8999 已提交
717 718
  | ----------- | -------- | ---- | ----- |
  | publishId   | number   | 是   | 发布标识。 |
S
summer8999 已提交
719

@
@shi-xiaoxiao-iris 已提交
720
**错误码:**
@
@shi-xiaoxiao-iris 已提交
721

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

@
@shi-xiaoxiao-iris 已提交
724
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
725 726
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
727

@
@shi-xiaoxiao-iris 已提交
728
**示例:**
@
@shi-xiaoxiao-iris 已提交
729

S
summer8999 已提交
730
  ```js
731
  try {
732 733
    // unPublishDeviceDiscovery和publishDeviceDiscovery配对使用,入参需要和publishDeviceDiscovery接口传入的publishId值相等
    var publishId = 12345;
734
    dmInstance.unPublishDeviceDiscovery(publishId);
735
  } catch (err) {
736
    console.error("unPublishDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
737
  }
S
summer8999 已提交
738 739
  ```

740 741
### authenticateDevice

742
authenticateDevice(deviceInfo: DeviceInfo, authParam: AuthParam, callback: AsyncCallback&lt;{deviceId: string, pinToken ?: number}&gt;): void
743 744 745 746 747

认证设备。

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

@
@shi-xiaoxiao-iris 已提交
748
**参数:**
@
@shi-xiaoxiao-iris 已提交
749

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

@
@shi-xiaoxiao-iris 已提交
756
**错误码:**
@
@shi-xiaoxiao-iris 已提交
757

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

@
@shi-xiaoxiao-iris 已提交
760
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
761 762 763
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600103 | Authentication invalid.                                         |
@
@shi-xiaoxiao-iris 已提交
764

@
@shi-xiaoxiao-iris 已提交
765
**示例:**
@
@shi-xiaoxiao-iris 已提交
766

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

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

unAuthenticateDevice(deviceInfo: DeviceInfo): void

解除认证设备。

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

@
@shi-xiaoxiao-iris 已提交
808
**参数:**
@
@shi-xiaoxiao-iris 已提交
809

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

@
@shi-xiaoxiao-iris 已提交
814
**错误码:**
@
@shi-xiaoxiao-iris 已提交
815

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

@
@shi-xiaoxiao-iris 已提交
818
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
819 820
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
821

@
@shi-xiaoxiao-iris 已提交
822
**示例:**
@
@shi-xiaoxiao-iris 已提交
823

824
  ```js
825
  try {
826 827 828 829 830 831 832
    var deviceInfo ={
      "deviceId": "XXXXXXXX",
      "deviceName": "",
      "deviceType": 0x0E,
      "networkId" : "xxxxxxx",
      "range" : 0
    };
833 834
    dmInstance.unAuthenticateDevice(deviceInfo);
  } catch (err) {
835
    console.error("unAuthenticateDevice errCode:" + err.code + ",errMessage:" + err.message);
836
  }
837 838 839 840
  ```

### verifyAuthInfo

841
verifyAuthInfo(authInfo: AuthInfo, callback: AsyncCallback&lt;{deviceId: string, level: number}&gt;): void
842 843 844 845 846

验证认证信息。

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

@
@shi-xiaoxiao-iris 已提交
847
**参数:**
@
@shi-xiaoxiao-iris 已提交
848

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

@
@shi-xiaoxiao-iris 已提交
854
**错误码:**
@
@shi-xiaoxiao-iris 已提交
855

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

@
@shi-xiaoxiao-iris 已提交
858
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
859 860
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
861

@
@shi-xiaoxiao-iris 已提交
862
**示例:**
@
@shi-xiaoxiao-iris 已提交
863

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

@
@shi-xiaoxiao-iris 已提交
883
### setUserOperation<sup>9+</sup>
@
@shi-xiaoxiao-iris 已提交
884 885 886 887 888 889 890

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

设置用户ui操作行为。

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

@
@shi-xiaoxiao-iris 已提交
891
**参数:**
@
@shi-xiaoxiao-iris 已提交
892

@
@shi-xiaoxiao-iris 已提交
893
  | 参数名       | 类型            | 必填  | 说明                |
894 895 896
  | ------------- | --------------- | ---- | ------------------- |
  | operateAction | number          | 是    | 用户操作动作。       |
  | params        | string          | 是    | 表示用户的输入参数。 |
@
@shi-xiaoxiao-iris 已提交
897

@
@shi-xiaoxiao-iris 已提交
898
**示例:**
@
@shi-xiaoxiao-iris 已提交
899 900

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

W
wuqi0105 已提交
917
### requestCredentialRegisterInfo<sup>10+</sup>
W
wuqi0105 已提交
918

W
wuqi0105 已提交
919
requestCredentialRegisterInfo(requestInfo: string, callback: AsyncCallback<{registerInfo: string}>): void;
W
wuqi0105 已提交
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939

获取凭据的注册信息。

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

**参数:**

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

**示例:**

  ```js
  let credentialInfo = {
    "version" : "1.2.3",
    "userId" : "123"
  }
  try {
W
wuqi0105 已提交
940
    dmClass.requestCredentialRegisterInfo(credentialInfo, (data) => {
W
wuqi0105 已提交
941
      if (data) {
W
wuqi0105 已提交
942
          console.info("requestCredentialRegisterInfo result:" + JSON.stringify(data));
W
wuqi0105 已提交
943
      } else {
W
wuqi0105 已提交
944
          console.info.push("requestCredentialRegisterInfo result: data is null");
W
wuqi0105 已提交
945 946 947
      }
    });
  } catch (err) {
W
wuqi0105 已提交
948
    console.error("requestCredentialRegisterInfo err:" + err.code + "," + err.message);
W
wuqi0105 已提交
949 950 951 952 953 954 955 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
  }
  ```

### 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 已提交
1039
### on('uiStateChange')<sup>9+</sup>
@
@shi-xiaoxiao-iris 已提交
1040

1041
on(type: 'uiStateChange', callback: Callback&lt;{ param: string}&gt;): void;
@
@shi-xiaoxiao-iris 已提交
1042 1043 1044 1045 1046

ui状态变更回调。

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

@
@shi-xiaoxiao-iris 已提交
1047
**参数:**
@
@shi-xiaoxiao-iris 已提交
1048

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

@
@shi-xiaoxiao-iris 已提交
1054
**示例:**
@
@shi-xiaoxiao-iris 已提交
1055 1056 1057

  ```js
  try {
@
@shi-xiaoxiao-iris 已提交
1058
    dmInstance.on('uiStateChange', (data) => {
@
@shi-xiaoxiao-iris 已提交
1059 1060
    console.log("uiStateChange executed, dialog closed" + JSON.stringify(data))
    var tmpStr = JSON.parse(data.param)
1061 1062
    var isShow = tmpStr.verifyFailed
    console.log("uiStateChange executed, dialog closed" + isShow)
@
@shi-xiaoxiao-iris 已提交
1063 1064 1065 1066 1067 1068
  });
  } catch (err) {
    console.error("uiStateChange errCode:" + err.code + ",errMessage:" + err.message);
  }
  ```

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

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

1073 1074
取消ui状态变更回调。

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

@
@shi-xiaoxiao-iris 已提交
1077
**参数:**
@
@shi-xiaoxiao-iris 已提交
1078

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

@
@shi-xiaoxiao-iris 已提交
1084
**示例:**
@
@shi-xiaoxiao-iris 已提交
1085 1086 1087

  ```js
  try {
@
@shi-xiaoxiao-iris 已提交
1088
    dmInstance.off('uiStateChange');
@
@shi-xiaoxiao-iris 已提交
1089 1090 1091 1092 1093
  } catch (err) {
    console.error("uiStateChange errCode:" + err.code + ",errMessage:" + err.message);
  }
  ```

Z
zengyawen 已提交
1094
### on('deviceStateChange')
Z
zengyawen 已提交
1095

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

Z
zengyawen 已提交
1098 1099
注册设备状态回调。

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

@
@shi-xiaoxiao-iris 已提交
1102
**参数:**
@
@shi-xiaoxiao-iris 已提交
1103

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

@
@shi-xiaoxiao-iris 已提交
1109
**示例:**
@
@shi-xiaoxiao-iris 已提交
1110

1111
  ```js
1112 1113 1114 1115 1116
  try {
    dmInstance.on('deviceStateChange', (data) => {
      console.info("deviceStateChange on:" + JSON.stringify(data));
    });
  } catch (err) {
1117
    console.error("deviceStateChange errCode:" + err.code + ",errMessage:" + err.message);
1118
  }
Z
zengyawen 已提交
1119
  ```
Z
zengyawen 已提交
1120

Z
zengyawen 已提交
1121
### off('deviceStateChange')
Z
zengyawen 已提交
1122

1123
off(type: 'deviceStateChange', callback?: Callback&lt;{ action: DeviceStateChangeAction, device: DeviceInfo }&gt;): void
Z
zengyawen 已提交
1124 1125 1126

取消注册设备状态回调。

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

@
@shi-xiaoxiao-iris 已提交
1129
**参数:**
@
@shi-xiaoxiao-iris 已提交
1130

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

@
@shi-xiaoxiao-iris 已提交
1136
**示例:**
@
@shi-xiaoxiao-iris 已提交
1137

1138
  ```js
1139 1140 1141 1142 1143
  try {
    dmInstance.off('deviceStateChange', (data) => {
      console.info('deviceStateChange' + JSON.stringify(data));
    });
  } catch (err) {
1144
    console.error("deviceStateChange errCode:" + err.code + ",errMessage:" + err.message);
1145
  }
Z
zengyawen 已提交
1146 1147
  ```

1148 1149
### on('deviceFound')

1150
on(type: 'deviceFound', callback: Callback&lt;{ subscribeId: number, device: DeviceInfo }&gt;): void
1151 1152 1153 1154 1155

注册发现设备回调监听。

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

@
@shi-xiaoxiao-iris 已提交
1156
**参数:**
@
@shi-xiaoxiao-iris 已提交
1157

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

@
@shi-xiaoxiao-iris 已提交
1163
**示例:**
@
@shi-xiaoxiao-iris 已提交
1164

1165
  ```js
1166 1167 1168 1169 1170
  try {
    dmInstance.on('deviceFound', (data) => {
      console.info("deviceFound:" + JSON.stringify(data));
    });
  } catch (err) {
1171
    console.error("deviceFound errCode:" + err.code + ",errMessage:" + err.message);
1172
  }
1173 1174 1175 1176
  ```

### off('deviceFound')

1177
off(type: 'deviceFound', callback?: Callback&lt;{ subscribeId: number, device: DeviceInfo }&gt;): void
1178 1179 1180 1181 1182

取消注册设备发现回调。

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

@
@shi-xiaoxiao-iris 已提交
1183
**参数:**
@
@shi-xiaoxiao-iris 已提交
1184

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

@
@shi-xiaoxiao-iris 已提交
1190
**示例:**
@
@shi-xiaoxiao-iris 已提交
1191

1192
  ```js
1193 1194 1195 1196 1197
  try {
    dmInstance.off('deviceFound', (data) => {
      console.info('deviceFound' + JSON.stringify(data));
    });
  } catch (err) {
1198
    console.error("deviceFound errCode:" + err.code + ",errMessage:" + err.message);
1199
  }
1200 1201 1202 1203
  ```

### on('discoverFail')

1204
on(type: 'discoverFail', callback: Callback&lt;{ subscribeId: number, reason: number }&gt;): void
1205 1206 1207 1208 1209

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

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

@
@shi-xiaoxiao-iris 已提交
1210
**参数:**
@
@shi-xiaoxiao-iris 已提交
1211

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

@
@shi-xiaoxiao-iris 已提交
1217
**示例:**
@
@shi-xiaoxiao-iris 已提交
1218

1219
  ```js
1220 1221
  try {
    dmInstance.on('discoverFail', (data) => {
1222
        console.info("discoverFail on:" + JSON.stringify(data));
1223
    });
1224
  } catch (err) {
1225
    console.error("discoverFail errCode:" + err.code + ",errMessage:" + err.message);
1226
  }
1227 1228 1229 1230
  ```

### off('discoverFail')

1231
off(type: 'discoverFail', callback?: Callback&lt;{ subscribeId: number, reason: number }&gt;): void
1232 1233 1234 1235 1236

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

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

@
@shi-xiaoxiao-iris 已提交
1237
**参数:**
@
@shi-xiaoxiao-iris 已提交
1238

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

@
@shi-xiaoxiao-iris 已提交
1244
**示例:**
@
@shi-xiaoxiao-iris 已提交
1245

1246
  ```js
1247 1248 1249 1250 1251
  try {
    dmInstance.off('discoverFail', (data) => {
      console.info('discoverFail' + JSON.stringify(data));
    });
  } catch (err) {
1252
    console.error("discoverFail errCode:" + err.code + ",errMessage:" + err.message);
1253
  }
1254 1255
  ```

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

1258
on(type: 'publishSuccess', callback: Callback&lt;{ publishId: number }&gt;): void
S
summer8999 已提交
1259 1260 1261 1262 1263

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

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

@
@shi-xiaoxiao-iris 已提交
1264
**参数:**
@
@shi-xiaoxiao-iris 已提交
1265

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

@
@shi-xiaoxiao-iris 已提交
1271

@
@shi-xiaoxiao-iris 已提交
1272
**示例:**
@
@shi-xiaoxiao-iris 已提交
1273

S
summer8999 已提交
1274
  ```js
1275 1276 1277 1278 1279
  try {
    dmInstance.on('publishSuccess', (data) => {
      console.info("publishSuccess:" + JSON.stringify(data));
    });
  } catch (err) {
1280
    console.error("publishSuccess errCode:" + err.code + ",errMessage:" + err.message);
1281
  }
S
summer8999 已提交
1282 1283
  ```

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

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

S
summer8999 已提交
1288
取消注册设备发布成功回调。
S
summer8999 已提交
1289 1290 1291

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

@
@shi-xiaoxiao-iris 已提交
1292
**参数:**
@
@shi-xiaoxiao-iris 已提交
1293

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

@
@shi-xiaoxiao-iris 已提交
1299
**示例:**
@
@shi-xiaoxiao-iris 已提交
1300

S
summer8999 已提交
1301
  ```js
1302 1303 1304 1305 1306
  try {
    dmInstance.off('publishSuccess', (data) => {
      console.info('publishSuccess' + JSON.stringify(data));
    });
  } catch (err) {
1307
    console.error("publishSuccess errCode:" + err.code + ",errMessage:" + err.message);
1308
  }
S
summer8999 已提交
1309 1310
  ```

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

1313
on(type: 'publishFail', callback: Callback&lt;{ publishId: number, reason: number }&gt;): void
S
summer8999 已提交
1314 1315 1316 1317 1318

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

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

@
@shi-xiaoxiao-iris 已提交
1319
**参数:**
@
@shi-xiaoxiao-iris 已提交
1320

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

@
@shi-xiaoxiao-iris 已提交
1326
**示例:**
@
@shi-xiaoxiao-iris 已提交
1327

S
summer8999 已提交
1328
  ```js
1329 1330
  try {
    dmInstance.on('publishFail', (data) => {
1331
      console.info("publishFail on:" + JSON.stringify(data));
1332 1333
    });
  } catch (err) {
1334
    console.error("publishFail errCode:" + err.code + ",errMessage:" + err.message);
1335
  }
S
summer8999 已提交
1336 1337
  ```

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

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

S
summer8999 已提交
1342
取消注册设备发布失败回调。
S
summer8999 已提交
1343 1344 1345

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

@
@shi-xiaoxiao-iris 已提交
1346
**参数:**
@
@shi-xiaoxiao-iris 已提交
1347

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

@
@shi-xiaoxiao-iris 已提交
1353
**示例:**
@
@shi-xiaoxiao-iris 已提交
1354

S
summer8999 已提交
1355
  ```js
1356 1357 1358 1359 1360
  try {
    dmInstance.off('publishFail', (data) => {
      console.info('publishFail' + JSON.stringify(data));
    });
  } catch (err) {
1361
    console.error("publishFail errCode:" + err.code + ",errMessage:" + err.message);
1362
  }
S
summer8999 已提交
1363
  ```
1364

Z
zengyawen 已提交
1365 1366 1367
### on('serviceDie')

on(type: 'serviceDie', callback: () =&gt; void): void
Z
zengyawen 已提交
1368 1369 1370

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

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

@
@shi-xiaoxiao-iris 已提交
1373
**参数:**
@
@shi-xiaoxiao-iris 已提交
1374

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

@
@shi-xiaoxiao-iris 已提交
1380
**示例:**
@
@shi-xiaoxiao-iris 已提交
1381

1382
  ```js
1383 1384 1385 1386 1387
  try {
    dmInstance.on("serviceDie", () => {
      console.info("serviceDie on");
    });
  } catch (err) {
1388
    console.error("serviceDie errCode:" + err.code + ",errMessage:" + err.message);
1389
  }
Z
zengyawen 已提交
1390
  ```
Z
zengyawen 已提交
1391

Z
zengyawen 已提交
1392 1393 1394 1395 1396
### off('serviceDie')

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

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

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

@
@shi-xiaoxiao-iris 已提交
1400
**参数:**
@
@shi-xiaoxiao-iris 已提交
1401

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

@
@shi-xiaoxiao-iris 已提交
1407
**示例:**
@
@shi-xiaoxiao-iris 已提交
1408

1409
  ```js
1410 1411 1412 1413 1414
  try {
    dmInstance.off("serviceDie", () => {
      console.info("serviceDie off");
    });
  } catch (err) {
1415
    console.error("serviceDie errCode:" + err.code + ",errMessage:" + err.message);
1416
  }
1417
  ```