who is connected on my WIFI
how i check who is connected on my WIFI i want to get IP address of connected PCs.any code about it?using C#
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Muhammad JawwadPosted May 15, 2014, 3:06 AM
Naveed ZamanPosted May 15, 2014, 2:43 AM
wlan = new WlanClient();
Collection connectedSsids = new Collection(); foreach (WlanClient.WlanInterface wlanInterface in wlan.Interfaces) { Wlan.Dot11Ssid ssid = wlanInterface.CurrentConnection.wlanAssociationAttributes.dot11Ssid; connectedSsids.Add(new String(Encoding.ASCII.GetChars(ssid.SSID,0, (int)ssid.SSIDLength))); }