BitSharp.Network.Domain.NetworkAddress.NetworkAddress C# (CSharp) Method

NetworkAddress() public method

public NetworkAddress ( System.UInt64 Services, ImmutableArray IPv6Address, UInt16 Port ) : System
Services System.UInt64
IPv6Address ImmutableArray
Port System.UInt16
return System
        public NetworkAddress(UInt64 Services, ImmutableArray<byte> IPv6Address, UInt16 Port)
        {
            this.Services = Services;
            this.IPv6Address = IPv6Address;
            this.Port = Port;
        }
    }
NetworkAddress