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)