Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CreateIPv4Address()

static IPAddress System.Net.NameResolutionPal.CreateIPv4Address ( ReadOnlySpan< byte > socketAddress)
inlinestaticprivate

Definition at line 432 of file NameResolutionPal.cs.

433 {
434 long newAddress = (long)System.Net.SocketAddressPal.GetIPv4Address(socketAddress) & 0xFFFFFFFFL;
435 return new IPAddress(newAddress);
436 }
static uint GetIPv4Address(ReadOnlySpan< byte > buffer)

References System.Net.SocketAddressPal.GetIPv4Address(), and System.L.

Referenced by System.Net.NameResolutionPal.ParseAddressInfo(), and System.Net.NameResolutionPal.ParseAddressInfoEx().