/// <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); }
/// <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); }
/// <summary> /// Gets the currently connected AP /// </summary> public void GetConnectedAP() { currentAP = WiFiManager.GetConnectedAP(); }