BitSharp.Network.Domain.NetworkAddressWithTime.With C# (CSharp) Méthode

With() public méthode

public With ( DateTimeOffset Time = null, NetworkAddress NetworkAddress = null ) : NetworkAddressWithTime
Time DateTimeOffset
NetworkAddress NetworkAddress
Résultat NetworkAddressWithTime
        public NetworkAddressWithTime With(DateTimeOffset? Time = null, NetworkAddress NetworkAddress = null)
        {
            return new NetworkAddressWithTime
            (
                Time ?? this.Time,
                NetworkAddress ?? this.NetworkAddress
            );
        }
    }
NetworkAddressWithTime