Esempio n. 1
0
 /// <summary>
 /// Gets the ESSID of the AP device is connected to
 /// </summary>
 /// <returns>ESSID of the connected Wi-Fi AP</returns>
 public string ConnectedAP()
 {
     return(WiFiManager.GetConnectedAP()?.NetworkInformation.Essid ?? null);
 }
Esempio n. 2
0
 /// <summary>
 /// Get the ESSID of the AP that this device is connected to
 /// </summary>
 /// <returns>ESSID of the connected Wi-Fi AP</returns>
 public String ConnectedAP()
 {
     // Call Tizen C# API
     return(WiFiManager.GetConnectedAP().NetworkInformation.Essid);
 }
Esempio n. 3
0
 /// <summary>
 /// Gets the currently connected AP
 /// </summary>
 public void GetConnectedAP()
 {
     currentAP = WiFiManager.GetConnectedAP();
 }