System.Net.IPAddress.IPAddress C# (CSharp) Method

IPAddress() public method

public IPAddress ( long newAddress ) : System.Diagnostics
newAddress long
return System.Diagnostics
        public IPAddress(long newAddress)
        {
            if (newAddress < 0 || newAddress > 0x00000000FFFFFFFF)
            {
                throw new ArgumentOutOfRangeException(nameof(newAddress));
            }

            PrivateAddress = (uint)newAddress;
        }

Same methods

IPAddress::IPAddress ( byte address ) : System.Diagnostics
IPAddress::IPAddress ( byte address, long scopeid ) : System.Diagnostics
IPAddress::IPAddress ( int newAddress ) : System.Diagnostics
IPAddress::IPAddress ( ushort numbers, uint scopeid ) : System.Diagnostics