NetworkToHostOrder Method (Int32)
Collapse the table of content
Expand the table of content

IPAddress.NetworkToHostOrder Method (Int32)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Converts an integer value from network byte order to host byte order.

Namespace:  System.Net
Assembly:  System.Net (in System.Net.dll)

'Declaration
Public Shared Function NetworkToHostOrder ( _
	network As Integer _
) As Integer

Parameters

network
Type: System.Int32
The number to convert, expressed in network byte order.

Return Value

Type: System.Int32
An integer value, expressed in host byte order.

Different computers use different conventions for ordering the bytes within multibyte integer values. Some computers put the most significant byte first (known as big-endian order) and others put the least-significant byte first (known as little-endian order). To work with computers that use different byte ordering, all integer values that are sent over the network are sent in network byte order which has the most significant byte first.

The NetworkToHostOrder method converts multibyte integer values that are stored on the host system from the byte order used by the network to the byte order used by the host.

The following example uses the NetworkToHostOrder method to convert an integer value from network byte order to host byte order.


Dim networkByteInt As Integer = 286064640
Dim hostByteInt As Integer
' Converts an integer value from network byte order to host byte order.
hostByteInt = IPAddress.NetworkToHostOrder(networkByteInt)
outputBlock.Text &= "Network byte order to Host byte order of "
outputBlock.Text &= networkByteInt
outputBlock.Text &= " is "
outputBlock.Text &= hostByteInt
outputBlock.Text &= vbCrLf


Windows Phone OS

Supported in: 8.1, 8.0, 7.1

Windows Phone

Show:
© 2017 Microsoft