using System; namespace ArchestrAServices.Contract; public static class SystemAuthenticationConstants { public static string MakeTemporaryRegistrationEndpointAddress(string SRNode) { if (SRNode.ToLower() == "localhost") { SRNode = Environment.MachineName; } return "net.tcp://" + SRNode + ":7084/SystemAuthentication/Registration"; } public static string MakeTemporaryPairingEndpointAddress(string SRNode) { if (SRNode.ToLower() == "localhost") { SRNode = Environment.MachineName; } return "net.tcp://" + SRNode + ":7085/SystemAuthentication/Pairing"; } }