GameDevWare.Charon.Settings.GetLicenseServerAddress C# (CSharp) Method

GetLicenseServerAddress() private method

private GetLicenseServerAddress ( ) : Uri
return System.Uri
        internal Uri GetLicenseServerAddress()
        {
            if (string.IsNullOrEmpty(this.LicenseServerAddress) || this.LicenseServerAddress.All(char.IsWhiteSpace))
                return new Uri(DEFAULT_LICENSE_SERVER_ADDRESS);
            return new Uri(this.LicenseServerAddress);
        }