BitSharp.Network.Messaging.ConstructNetworkAddressWithTime C# (CSharp) Method

ConstructNetworkAddressWithTime() public static method

public static ConstructNetworkAddressWithTime ( DateTimeOffset time, IPAddress ip, int port ) : BitSharp.Network.NetworkAddressWithTime
time DateTimeOffset
ip System.Net.IPAddress
port int
return BitSharp.Network.NetworkAddressWithTime
        public static NetworkAddressWithTime ConstructNetworkAddressWithTime(DateTimeOffset time, IPAddress ip, int port)
        {
            return new NetworkAddressWithTime
            (
                Time: time,
                NetworkAddress: ConstructNetworkAddress(ip, port)
            );
        }