Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Phone 8.1 vs Windows Phone Silverlight 8.1 - is there missing documentation on MSDN?

I'm attempting to port some .NET code to a Windows Phone 8.1 (not Silverlight) library and have been banging my head against the wall for a while now trying to understand why System.Net.IPAddress wasn't available.

According to the Windows Phone MSDN page, it appears to be available for Windows Phone 8.1

Version Information: Windows Phone OS Supported in: 8.1, 8.0, 7.1

Platforms: Windows Phone

and the "regular" MSDN page states

Version Information: 
.NET for Windows Phone apps
Supported in: Windows Phone 8.1, Windows Phone 8, Silverlight 8.1

Platforms: Windows Phone 8.1, Windows Phone 8, 

Yet I cannot access System.Net.IPAddress in any Windows Phone 8.1 project. I can access it a Windows Phone Silverlight 8.1 project.

Am I misreading the documentation? Is there something extra I might need to reference in my Windows Phone 8.1 project?

(It's interesting that Windows Phone 8.1 app references .NET for Windows Store apps and Windows Phone 8.1 and the Silverlight app references .NET for Windows Phone and Windows Phone so I'm sure the first has less accessible to it - it's just that I can't see that mentioned in the documentation)

like image 794
Jedidja Avatar asked Apr 19 '14 12:04

Jedidja


1 Answers

You just look in the wrong place. Windows Phone 8.1 is a Windows Runtime app, which is nothing to do with Windows Phone Silverlight, you must be oriented to Windows Store Apps API.

System.Net for Windows Runtime apps

For functional applications for the Windows Phone 8.1 and Windows Store App should be the same, so you just can not tie anything from Windows Phone Silverlight to Windows Store App if they are not suitable

Here you can look full list of differences.

like image 116
IceFog Avatar answered Oct 19 '22 21:10

IceFog