C# - How do I access the WLAN signal strength and others?











up vote
10
down vote

favorite
8












Many scientists have published papers documenting how devices connected via WLAN can be tracked by measuring its Signal Strength, Time Of Arrival, Round Trip Time, etc. Any idea how I can access these values in Windows using any .NET API?



Or do you know of software SDKs already available for location tracking?










share|improve this question




























    up vote
    10
    down vote

    favorite
    8












    Many scientists have published papers documenting how devices connected via WLAN can be tracked by measuring its Signal Strength, Time Of Arrival, Round Trip Time, etc. Any idea how I can access these values in Windows using any .NET API?



    Or do you know of software SDKs already available for location tracking?










    share|improve this question


























      up vote
      10
      down vote

      favorite
      8









      up vote
      10
      down vote

      favorite
      8






      8





      Many scientists have published papers documenting how devices connected via WLAN can be tracked by measuring its Signal Strength, Time Of Arrival, Round Trip Time, etc. Any idea how I can access these values in Windows using any .NET API?



      Or do you know of software SDKs already available for location tracking?










      share|improve this question















      Many scientists have published papers documenting how devices connected via WLAN can be tracked by measuring its Signal Strength, Time Of Arrival, Round Trip Time, etc. Any idea how I can access these values in Windows using any .NET API?



      Or do you know of software SDKs already available for location tracking?







      c# windows location tracking wlan






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 6 '09 at 11:00









      skaffman

      336k85729719




      336k85729719










      asked Nov 6 '09 at 10:26









      Robinicks

      41.8k115329538




      41.8k115329538
























          3 Answers
          3






          active

          oldest

          votes

















          up vote
          11
          down vote



          accepted










          hello for WIndows 7 this is a good code wich can detect all AP with MAC adress RSSI SSID :



          using System;
          using System.Collections.Generic;
          using System.ComponentModel;
          using System.Data;
          using System.Drawing;
          using System.Text;
          using System.Windows.Forms;
          using NativeWifi;

          class Program
          {

          static void Main(string args)
          {

          WlanClient client = new WlanClient();
          // Wlan = new WlanClient();
          try
          {
          foreach (WlanClient.WlanInterface wlanIface in client.Interfaces)
          {

          Wlan.WlanBssEntry wlanBssEntries = wlanIface.GetNetworkBssList();

          foreach (Wlan.WlanBssEntry network in wlanBssEntries)
          {
          int rss = network.rssi;
          // MessageBox.Show(rss.ToString());
          byte macAddr = network.dot11Bssid;

          string tMac = "";

          for (int i = 0; i < macAddr.Length; i++)
          {

          tMac += macAddr[i].ToString("x2").PadLeft(2, '0').ToUpper();

          }



          Console.WriteLine("Found network with SSID {0}.", System.Text.ASCIIEncoding.ASCII.GetString(network.dot11Ssid.SSID).ToString());

          Console.WriteLine("Signal: {0}%.", network.linkQuality);

          Console.WriteLine("BSS Type: {0}.", network.dot11BssType);

          Console.WriteLine("MAC: {0}.", tMac);

          Console.WriteLine("RSSID:{0}", rss.ToString());


          }
          Console.ReadLine();
          }
          }
          catch (Exception ex)
          {
          MessageBox.Show(ex.Message);
          }

          }
          }
          }


          i hope it will be helpful enjoy






          share|improve this answer



















          • 2




            Hi Cody , could you please extend this example to make a connection to one of the available wifi ssids?
            – HelloWorld_Always
            Jul 7 '11 at 20:51






          • 3




            this answer should have mentioned that the nativewifi namespace can be found here managedwifi.codeplex.com
            – Joe
            Apr 20 '15 at 16:30










          • Is it possible to find Wifi mode like 802.11n, 802.11g ?
            – Shanalal Kasim
            Nov 21 '17 at 6:41


















          up vote
          10
          down vote













          The Managed Wifi API will provide signal strength information. Here's a code snippet adapted from a question I previously posed and was answered here:



          static void Main(string args)
          {
          WlanClient client = new WlanClient();
          foreach ( WlanClient.WlanInterface wlanIface in client.Interfaces )
          {
          Wlan.WlanAvailableNetwork networks = wlanIface.GetAvailableNetworkList( 0 );
          foreach ( Wlan.WlanAvailableNetwork network in networks )
          {
          Console.WriteLine( "Found network with SSID {0} and Siqnal Quality {1}.", GetStringForSSID(network.dot11Ssid), network.wlanSignalQuality);
          }
          }
          }

          static string GetStringForSSID(Wlan.Dot11Ssid ssid)
          {
          return Encoding.ASCII.GetString(ssid.SSID, 0, (int) ssid.SSIDLength);
          }





          share|improve this answer



















          • 2




            +1 That is a nice answer. Very clear!
            – Will Marcouiller
            Mar 2 '10 at 3:11


















          up vote
          2
          down vote













          Windows itself provides a Location API now.






          share|improve this answer





















          • Good idea, but no mention of WLAN tracking, they're assuming we have GPS devices... slow and inaccurate.
            – Robinicks
            Nov 6 '09 at 10:41










          • The Location API is by "default" technology agnostic, meaning it can have input from any type of location source. If you want to use WLAN it is just a matter of writing a source "driver" for Windows. This will allow all Location API capable applications to tap into your source, and similarly your application can use several sources. However, you will find that for indoor positioning WLAN isn't the best available solution.
            – andy
            Nov 23 '09 at 8:42











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f1686715%2fc-sharp-how-do-i-access-the-wlan-signal-strength-and-others%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          3 Answers
          3






          active

          oldest

          votes








          3 Answers
          3






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          11
          down vote



          accepted










          hello for WIndows 7 this is a good code wich can detect all AP with MAC adress RSSI SSID :



          using System;
          using System.Collections.Generic;
          using System.ComponentModel;
          using System.Data;
          using System.Drawing;
          using System.Text;
          using System.Windows.Forms;
          using NativeWifi;

          class Program
          {

          static void Main(string args)
          {

          WlanClient client = new WlanClient();
          // Wlan = new WlanClient();
          try
          {
          foreach (WlanClient.WlanInterface wlanIface in client.Interfaces)
          {

          Wlan.WlanBssEntry wlanBssEntries = wlanIface.GetNetworkBssList();

          foreach (Wlan.WlanBssEntry network in wlanBssEntries)
          {
          int rss = network.rssi;
          // MessageBox.Show(rss.ToString());
          byte macAddr = network.dot11Bssid;

          string tMac = "";

          for (int i = 0; i < macAddr.Length; i++)
          {

          tMac += macAddr[i].ToString("x2").PadLeft(2, '0').ToUpper();

          }



          Console.WriteLine("Found network with SSID {0}.", System.Text.ASCIIEncoding.ASCII.GetString(network.dot11Ssid.SSID).ToString());

          Console.WriteLine("Signal: {0}%.", network.linkQuality);

          Console.WriteLine("BSS Type: {0}.", network.dot11BssType);

          Console.WriteLine("MAC: {0}.", tMac);

          Console.WriteLine("RSSID:{0}", rss.ToString());


          }
          Console.ReadLine();
          }
          }
          catch (Exception ex)
          {
          MessageBox.Show(ex.Message);
          }

          }
          }
          }


          i hope it will be helpful enjoy






          share|improve this answer



















          • 2




            Hi Cody , could you please extend this example to make a connection to one of the available wifi ssids?
            – HelloWorld_Always
            Jul 7 '11 at 20:51






          • 3




            this answer should have mentioned that the nativewifi namespace can be found here managedwifi.codeplex.com
            – Joe
            Apr 20 '15 at 16:30










          • Is it possible to find Wifi mode like 802.11n, 802.11g ?
            – Shanalal Kasim
            Nov 21 '17 at 6:41















          up vote
          11
          down vote



          accepted










          hello for WIndows 7 this is a good code wich can detect all AP with MAC adress RSSI SSID :



          using System;
          using System.Collections.Generic;
          using System.ComponentModel;
          using System.Data;
          using System.Drawing;
          using System.Text;
          using System.Windows.Forms;
          using NativeWifi;

          class Program
          {

          static void Main(string args)
          {

          WlanClient client = new WlanClient();
          // Wlan = new WlanClient();
          try
          {
          foreach (WlanClient.WlanInterface wlanIface in client.Interfaces)
          {

          Wlan.WlanBssEntry wlanBssEntries = wlanIface.GetNetworkBssList();

          foreach (Wlan.WlanBssEntry network in wlanBssEntries)
          {
          int rss = network.rssi;
          // MessageBox.Show(rss.ToString());
          byte macAddr = network.dot11Bssid;

          string tMac = "";

          for (int i = 0; i < macAddr.Length; i++)
          {

          tMac += macAddr[i].ToString("x2").PadLeft(2, '0').ToUpper();

          }



          Console.WriteLine("Found network with SSID {0}.", System.Text.ASCIIEncoding.ASCII.GetString(network.dot11Ssid.SSID).ToString());

          Console.WriteLine("Signal: {0}%.", network.linkQuality);

          Console.WriteLine("BSS Type: {0}.", network.dot11BssType);

          Console.WriteLine("MAC: {0}.", tMac);

          Console.WriteLine("RSSID:{0}", rss.ToString());


          }
          Console.ReadLine();
          }
          }
          catch (Exception ex)
          {
          MessageBox.Show(ex.Message);
          }

          }
          }
          }


          i hope it will be helpful enjoy






          share|improve this answer



















          • 2




            Hi Cody , could you please extend this example to make a connection to one of the available wifi ssids?
            – HelloWorld_Always
            Jul 7 '11 at 20:51






          • 3




            this answer should have mentioned that the nativewifi namespace can be found here managedwifi.codeplex.com
            – Joe
            Apr 20 '15 at 16:30










          • Is it possible to find Wifi mode like 802.11n, 802.11g ?
            – Shanalal Kasim
            Nov 21 '17 at 6:41













          up vote
          11
          down vote



          accepted







          up vote
          11
          down vote



          accepted






          hello for WIndows 7 this is a good code wich can detect all AP with MAC adress RSSI SSID :



          using System;
          using System.Collections.Generic;
          using System.ComponentModel;
          using System.Data;
          using System.Drawing;
          using System.Text;
          using System.Windows.Forms;
          using NativeWifi;

          class Program
          {

          static void Main(string args)
          {

          WlanClient client = new WlanClient();
          // Wlan = new WlanClient();
          try
          {
          foreach (WlanClient.WlanInterface wlanIface in client.Interfaces)
          {

          Wlan.WlanBssEntry wlanBssEntries = wlanIface.GetNetworkBssList();

          foreach (Wlan.WlanBssEntry network in wlanBssEntries)
          {
          int rss = network.rssi;
          // MessageBox.Show(rss.ToString());
          byte macAddr = network.dot11Bssid;

          string tMac = "";

          for (int i = 0; i < macAddr.Length; i++)
          {

          tMac += macAddr[i].ToString("x2").PadLeft(2, '0').ToUpper();

          }



          Console.WriteLine("Found network with SSID {0}.", System.Text.ASCIIEncoding.ASCII.GetString(network.dot11Ssid.SSID).ToString());

          Console.WriteLine("Signal: {0}%.", network.linkQuality);

          Console.WriteLine("BSS Type: {0}.", network.dot11BssType);

          Console.WriteLine("MAC: {0}.", tMac);

          Console.WriteLine("RSSID:{0}", rss.ToString());


          }
          Console.ReadLine();
          }
          }
          catch (Exception ex)
          {
          MessageBox.Show(ex.Message);
          }

          }
          }
          }


          i hope it will be helpful enjoy






          share|improve this answer














          hello for WIndows 7 this is a good code wich can detect all AP with MAC adress RSSI SSID :



          using System;
          using System.Collections.Generic;
          using System.ComponentModel;
          using System.Data;
          using System.Drawing;
          using System.Text;
          using System.Windows.Forms;
          using NativeWifi;

          class Program
          {

          static void Main(string args)
          {

          WlanClient client = new WlanClient();
          // Wlan = new WlanClient();
          try
          {
          foreach (WlanClient.WlanInterface wlanIface in client.Interfaces)
          {

          Wlan.WlanBssEntry wlanBssEntries = wlanIface.GetNetworkBssList();

          foreach (Wlan.WlanBssEntry network in wlanBssEntries)
          {
          int rss = network.rssi;
          // MessageBox.Show(rss.ToString());
          byte macAddr = network.dot11Bssid;

          string tMac = "";

          for (int i = 0; i < macAddr.Length; i++)
          {

          tMac += macAddr[i].ToString("x2").PadLeft(2, '0').ToUpper();

          }



          Console.WriteLine("Found network with SSID {0}.", System.Text.ASCIIEncoding.ASCII.GetString(network.dot11Ssid.SSID).ToString());

          Console.WriteLine("Signal: {0}%.", network.linkQuality);

          Console.WriteLine("BSS Type: {0}.", network.dot11BssType);

          Console.WriteLine("MAC: {0}.", tMac);

          Console.WriteLine("RSSID:{0}", rss.ToString());


          }
          Console.ReadLine();
          }
          }
          catch (Exception ex)
          {
          MessageBox.Show(ex.Message);
          }

          }
          }
          }


          i hope it will be helpful enjoy







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Apr 9 '11 at 16:07









          Cody Gray

          189k34368457




          189k34368457










          answered Apr 9 '11 at 10:05









          khadija

          12612




          12612








          • 2




            Hi Cody , could you please extend this example to make a connection to one of the available wifi ssids?
            – HelloWorld_Always
            Jul 7 '11 at 20:51






          • 3




            this answer should have mentioned that the nativewifi namespace can be found here managedwifi.codeplex.com
            – Joe
            Apr 20 '15 at 16:30










          • Is it possible to find Wifi mode like 802.11n, 802.11g ?
            – Shanalal Kasim
            Nov 21 '17 at 6:41














          • 2




            Hi Cody , could you please extend this example to make a connection to one of the available wifi ssids?
            – HelloWorld_Always
            Jul 7 '11 at 20:51






          • 3




            this answer should have mentioned that the nativewifi namespace can be found here managedwifi.codeplex.com
            – Joe
            Apr 20 '15 at 16:30










          • Is it possible to find Wifi mode like 802.11n, 802.11g ?
            – Shanalal Kasim
            Nov 21 '17 at 6:41








          2




          2




          Hi Cody , could you please extend this example to make a connection to one of the available wifi ssids?
          – HelloWorld_Always
          Jul 7 '11 at 20:51




          Hi Cody , could you please extend this example to make a connection to one of the available wifi ssids?
          – HelloWorld_Always
          Jul 7 '11 at 20:51




          3




          3




          this answer should have mentioned that the nativewifi namespace can be found here managedwifi.codeplex.com
          – Joe
          Apr 20 '15 at 16:30




          this answer should have mentioned that the nativewifi namespace can be found here managedwifi.codeplex.com
          – Joe
          Apr 20 '15 at 16:30












          Is it possible to find Wifi mode like 802.11n, 802.11g ?
          – Shanalal Kasim
          Nov 21 '17 at 6:41




          Is it possible to find Wifi mode like 802.11n, 802.11g ?
          – Shanalal Kasim
          Nov 21 '17 at 6:41












          up vote
          10
          down vote













          The Managed Wifi API will provide signal strength information. Here's a code snippet adapted from a question I previously posed and was answered here:



          static void Main(string args)
          {
          WlanClient client = new WlanClient();
          foreach ( WlanClient.WlanInterface wlanIface in client.Interfaces )
          {
          Wlan.WlanAvailableNetwork networks = wlanIface.GetAvailableNetworkList( 0 );
          foreach ( Wlan.WlanAvailableNetwork network in networks )
          {
          Console.WriteLine( "Found network with SSID {0} and Siqnal Quality {1}.", GetStringForSSID(network.dot11Ssid), network.wlanSignalQuality);
          }
          }
          }

          static string GetStringForSSID(Wlan.Dot11Ssid ssid)
          {
          return Encoding.ASCII.GetString(ssid.SSID, 0, (int) ssid.SSIDLength);
          }





          share|improve this answer



















          • 2




            +1 That is a nice answer. Very clear!
            – Will Marcouiller
            Mar 2 '10 at 3:11















          up vote
          10
          down vote













          The Managed Wifi API will provide signal strength information. Here's a code snippet adapted from a question I previously posed and was answered here:



          static void Main(string args)
          {
          WlanClient client = new WlanClient();
          foreach ( WlanClient.WlanInterface wlanIface in client.Interfaces )
          {
          Wlan.WlanAvailableNetwork networks = wlanIface.GetAvailableNetworkList( 0 );
          foreach ( Wlan.WlanAvailableNetwork network in networks )
          {
          Console.WriteLine( "Found network with SSID {0} and Siqnal Quality {1}.", GetStringForSSID(network.dot11Ssid), network.wlanSignalQuality);
          }
          }
          }

          static string GetStringForSSID(Wlan.Dot11Ssid ssid)
          {
          return Encoding.ASCII.GetString(ssid.SSID, 0, (int) ssid.SSIDLength);
          }





          share|improve this answer



















          • 2




            +1 That is a nice answer. Very clear!
            – Will Marcouiller
            Mar 2 '10 at 3:11













          up vote
          10
          down vote










          up vote
          10
          down vote









          The Managed Wifi API will provide signal strength information. Here's a code snippet adapted from a question I previously posed and was answered here:



          static void Main(string args)
          {
          WlanClient client = new WlanClient();
          foreach ( WlanClient.WlanInterface wlanIface in client.Interfaces )
          {
          Wlan.WlanAvailableNetwork networks = wlanIface.GetAvailableNetworkList( 0 );
          foreach ( Wlan.WlanAvailableNetwork network in networks )
          {
          Console.WriteLine( "Found network with SSID {0} and Siqnal Quality {1}.", GetStringForSSID(network.dot11Ssid), network.wlanSignalQuality);
          }
          }
          }

          static string GetStringForSSID(Wlan.Dot11Ssid ssid)
          {
          return Encoding.ASCII.GetString(ssid.SSID, 0, (int) ssid.SSIDLength);
          }





          share|improve this answer














          The Managed Wifi API will provide signal strength information. Here's a code snippet adapted from a question I previously posed and was answered here:



          static void Main(string args)
          {
          WlanClient client = new WlanClient();
          foreach ( WlanClient.WlanInterface wlanIface in client.Interfaces )
          {
          Wlan.WlanAvailableNetwork networks = wlanIface.GetAvailableNetworkList( 0 );
          foreach ( Wlan.WlanAvailableNetwork network in networks )
          {
          Console.WriteLine( "Found network with SSID {0} and Siqnal Quality {1}.", GetStringForSSID(network.dot11Ssid), network.wlanSignalQuality);
          }
          }
          }

          static string GetStringForSSID(Wlan.Dot11Ssid ssid)
          {
          return Encoding.ASCII.GetString(ssid.SSID, 0, (int) ssid.SSIDLength);
          }






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited May 23 '17 at 11:54









          Community

          11




          11










          answered Nov 6 '09 at 11:00









          Taylor Leese

          34.4k2494134




          34.4k2494134








          • 2




            +1 That is a nice answer. Very clear!
            – Will Marcouiller
            Mar 2 '10 at 3:11














          • 2




            +1 That is a nice answer. Very clear!
            – Will Marcouiller
            Mar 2 '10 at 3:11








          2




          2




          +1 That is a nice answer. Very clear!
          – Will Marcouiller
          Mar 2 '10 at 3:11




          +1 That is a nice answer. Very clear!
          – Will Marcouiller
          Mar 2 '10 at 3:11










          up vote
          2
          down vote













          Windows itself provides a Location API now.






          share|improve this answer





















          • Good idea, but no mention of WLAN tracking, they're assuming we have GPS devices... slow and inaccurate.
            – Robinicks
            Nov 6 '09 at 10:41










          • The Location API is by "default" technology agnostic, meaning it can have input from any type of location source. If you want to use WLAN it is just a matter of writing a source "driver" for Windows. This will allow all Location API capable applications to tap into your source, and similarly your application can use several sources. However, you will find that for indoor positioning WLAN isn't the best available solution.
            – andy
            Nov 23 '09 at 8:42















          up vote
          2
          down vote













          Windows itself provides a Location API now.






          share|improve this answer





















          • Good idea, but no mention of WLAN tracking, they're assuming we have GPS devices... slow and inaccurate.
            – Robinicks
            Nov 6 '09 at 10:41










          • The Location API is by "default" technology agnostic, meaning it can have input from any type of location source. If you want to use WLAN it is just a matter of writing a source "driver" for Windows. This will allow all Location API capable applications to tap into your source, and similarly your application can use several sources. However, you will find that for indoor positioning WLAN isn't the best available solution.
            – andy
            Nov 23 '09 at 8:42













          up vote
          2
          down vote










          up vote
          2
          down vote









          Windows itself provides a Location API now.






          share|improve this answer












          Windows itself provides a Location API now.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 6 '09 at 10:34









          GraemeF

          8,16354372




          8,16354372












          • Good idea, but no mention of WLAN tracking, they're assuming we have GPS devices... slow and inaccurate.
            – Robinicks
            Nov 6 '09 at 10:41










          • The Location API is by "default" technology agnostic, meaning it can have input from any type of location source. If you want to use WLAN it is just a matter of writing a source "driver" for Windows. This will allow all Location API capable applications to tap into your source, and similarly your application can use several sources. However, you will find that for indoor positioning WLAN isn't the best available solution.
            – andy
            Nov 23 '09 at 8:42


















          • Good idea, but no mention of WLAN tracking, they're assuming we have GPS devices... slow and inaccurate.
            – Robinicks
            Nov 6 '09 at 10:41










          • The Location API is by "default" technology agnostic, meaning it can have input from any type of location source. If you want to use WLAN it is just a matter of writing a source "driver" for Windows. This will allow all Location API capable applications to tap into your source, and similarly your application can use several sources. However, you will find that for indoor positioning WLAN isn't the best available solution.
            – andy
            Nov 23 '09 at 8:42
















          Good idea, but no mention of WLAN tracking, they're assuming we have GPS devices... slow and inaccurate.
          – Robinicks
          Nov 6 '09 at 10:41




          Good idea, but no mention of WLAN tracking, they're assuming we have GPS devices... slow and inaccurate.
          – Robinicks
          Nov 6 '09 at 10:41












          The Location API is by "default" technology agnostic, meaning it can have input from any type of location source. If you want to use WLAN it is just a matter of writing a source "driver" for Windows. This will allow all Location API capable applications to tap into your source, and similarly your application can use several sources. However, you will find that for indoor positioning WLAN isn't the best available solution.
          – andy
          Nov 23 '09 at 8:42




          The Location API is by "default" technology agnostic, meaning it can have input from any type of location source. If you want to use WLAN it is just a matter of writing a source "driver" for Windows. This will allow all Location API capable applications to tap into your source, and similarly your application can use several sources. However, you will find that for indoor positioning WLAN isn't the best available solution.
          – andy
          Nov 23 '09 at 8:42


















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f1686715%2fc-sharp-how-do-i-access-the-wlan-signal-strength-and-others%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Florida Star v. B. J. F.

          Error while running script in elastic search , gateway timeout

          Adding quotations to stringified JSON object values