diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-11 19:43:35 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-11 19:43:35 +0200 |
| commit | 48f781d037a83c51fdd555fb6c9d1c2b4e424efe (patch) | |
| tree | c13666e1ecb34dca68a8755af5c69534a493951f /Software/Visual_Studio/PPC/Tango.PPC.Common/Connectivity | |
| parent | 1952756022f71729aab3cea304d039f9b340b5d2 (diff) | |
| download | Tango-48f781d037a83c51fdd555fb6c9d1c2b4e424efe.tar.gz Tango-48f781d037a83c51fdd555fb6c9d1c2b4e424efe.zip | |
Working on PPC hotspot and external bridge.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Connectivity')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Connectivity/IConnectivityProvider.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Connectivity/IConnectivityProvider.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Connectivity/IConnectivityProvider.cs index 85c25128a..077f05110 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Connectivity/IConnectivityProvider.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Connectivity/IConnectivityProvider.cs @@ -79,5 +79,23 @@ namespace Tango.PPC.Common.Connectivity /// <param name="network">The network.</param> /// <returns></returns> void Disconnect(WiFiNetwork network); + + /// <summary> + /// Gets a value indicating whether the hot spot network is active. + /// </summary> + bool IsHotspotActive { get; } + + /// <summary> + /// Enables the hot spot. + /// </summary> + /// <param name="password">The password.</param> + /// <returns></returns> + Task EnableHotSpot(String password); + + /// <summary> + /// Disables the hot spot. + /// </summary> + /// <returns></returns> + Task DisableHotSpot(); } } |
