Try Microsoft Edge A fast and secure browser that's designed for Windows 10 No thanks Get started
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Provides the IPv4 loopback address. This field is read-only.
'Declaration Public Shared ReadOnly Loopback As IPAddress
The Loopback field is equivalent to 127.0.0.1 in dotted-decimal notation.
The following example displays the IPv4 Loopback address.
' Gets the IP loopback address and converts it to a string. Dim IpAddressString As [String] = IPAddress.Loopback.ToString() outputBlock.Text &= "Loopback IP address: " outputBlock.Text &= IpAddressString outputBlock.Text &= vbCrLf
Windows Phone