Added option to disable certificate checking
[pithos-ms-client] / trunk / Pithos.Client.WPF / Configuration / PithosSettings.cs
index 01866a4..fa24bab 100644 (file)
@@ -248,6 +248,16 @@ namespace Pithos.Client.WPF.Configuration
             }
         }
 
+        public bool IgnoreCertificateErrors
+        {
+            get { return _settings.IgnoreCertificateErrors; }
+            set
+            {
+                _settings.IgnoreCertificateErrors = value;
+
+            }
+        }
+
         private static void SetDebugLevel()
         {
             var loggerRepository = (Hierarchy) log4net.LogManager.GetRepository();