예제 #1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Testing .NET Core 1.1...");

            // Basic Twilio helper library connectivity test
            TwilioConnectivityTest451AndAbove.RunTest();
        }
예제 #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Testing .NET Framework 4.5.1...");

            // Necessary code to enforce TLS 1.2 on .NET 4.5.1
            ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

            // Basic Twilio helper library connectivity test
            TwilioConnectivityTest451AndAbove.RunTest();
        }