Mycroft.Program.UsingTls C# (CSharp) Method

UsingTls() private static method

Determines if the server should be run using TLS
private static UsingTls ( string args ) : bool
args string
return bool
        private static bool UsingTls(string[] args)
        {
            return !args.Contains("--no-tls");
        }