Fix for rare mono runtime crash during shutdown sequence on Windows.
[mono.git] / mcs / class / System / System.Net / SecurityProtocolType.cs
index 9e0003a00d457a93bc0d52b167c5d90b2c2af787..69f2fca0a84d586c6fb220a8b012341d8215e9ac 100644 (file)
 namespace System.Net {
 
        [Flags]
-       [Serializable]
-#if NET_1_0
-       internal
-#else
        public
-#endif
        enum SecurityProtocolType {
-
-#if NET_2_0
-               Default = -1073741824,
-               Ssl2 = 12,
-#endif
                Ssl3 = 48,
-               Tls = 192
+               Tls = 192,
+               Tls11 = 768,
+               Tls12 = 3072
        }
 }