BitSharp.Network.Domain.NetworkAddressWithTime.With C# (CSharp) Метод

With() публичный Метод

public With ( DateTimeOffset Time = null, NetworkAddress NetworkAddress = null ) : NetworkAddressWithTime
Time DateTimeOffset
NetworkAddress NetworkAddress
Результат NetworkAddressWithTime
        public NetworkAddressWithTime With(DateTimeOffset? Time = null, NetworkAddress NetworkAddress = null)
        {
            return new NetworkAddressWithTime
            (
                Time ?? this.Time,
                NetworkAddress ?? this.NetworkAddress
            );
        }
    }
NetworkAddressWithTime