Versionr.Network.Client.ToVersionrURL C# (CSharp) Méthode

ToVersionrURL() public static méthode

public static ToVersionrURL ( string host, int port, string domain = null ) : string
host string
port int
domain string
Résultat string
        public static string ToVersionrURL(string host, int port, string domain = null)
        {
            return "vsr://" + host + ":" + port + (string.IsNullOrEmpty(domain) ? "" : ("/" + domain));
        }