Can one access the Windows 7 Sensor and Location platform from Silverlight? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T22:18:52Z http://stackoverflow.com/feeds/question/842411 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/842411/can-one-access-the-windows-7-sensor-and-location-platform-from-silverlight 0 Can one access the Windows 7 Sensor and Location platform from Silverlight? JonnyBoats 2009-05-09T00:49:03Z 2009-05-12T02:21:05Z <p>Is it possible to access the Windows 7 Sensor and Location platform from Silverlight? In particular I would like to know about the location data (GPS) and the ambient light sensor.</p> <p>Edit: I would assume that the way to do this would be with C# in the code behind file.</p> http://stackoverflow.com/questions/842411/can-one-access-the-windows-7-sensor-and-location-platform-from-silverlight/850696#850696 1 Answer by McAravey for Can one access the Windows 7 Sensor and Location platform from Silverlight? McAravey 2009-05-12T00:53:30Z 2009-05-12T00:53:30Z <p>No. Silverlight is supposed to be cross-platform and the Sensor and Location stuff in Win7 is not available anywhere other than Win7. You could try some complicated mix of Silverlight + .NET, but then it would be silly to use Silverlight when the whole .NET/WPF platform is available.</p> http://stackoverflow.com/questions/842411/can-one-access-the-windows-7-sensor-and-location-platform-from-silverlight/850720#850720 1 Answer by Tim Jarvis for Can one access the Windows 7 Sensor and Location platform from Silverlight? Tim Jarvis 2009-05-12T01:06:13Z 2009-05-12T01:06:13Z <p>The Silverlight security model is explained (somewhat) here <a href="http://blogs.msdn.com/shawnfa/archive/2007/05/09/the-silverlight-security-model.aspx" rel="nofollow">http://blogs.msdn.com/shawnfa/archive/2007/05/09/the-silverlight-security-model.aspx</a></p> <p>The Win7 Sensor API is a native API and from .NET requires P/Invoke calls, this in a silverlight context is referred to as critical code (IMO very poorly named, but there you have it) and needs to be in an intermediate layer, so it should be doable but will not be portable.</p>