1# @ohos.net.sharing (Network Sharing)
2
3The network sharing module allows you to share your device's network connectivity with other connected devices.
4
5> **NOTE**
6>
7> The initial APIs of this module are supported since API version 9. Newly added APIs will be marked with a superscript to indicate their earliest API version.
8
9
10## Modules to Import
11
12```js
13import { sharing } from '@kit.NetworkKit';
14```
15
16## NetHandle
17
18type NetHandle = connection.NetHandle
19
20Defines the handle of the data network. Before calling the **NetHandle** function, call the **getNetHandle** function to obtain a **NetHandle** object.
21
22**System capability**: SystemCapability.Communication.NetManager.Core
23
24| Type  | Description                                                        |
25| ------ | ------------------------------------------------------------ |
26| [connection.NetHandle](./js-apis-net-connection.md#nethandle) | Network link address information.|
27