2007-06-21 Dick Porter <dick@ximian.com>
[mono.git] / mcs / class / System / System.Net / Authorization.cs
old mode 100755 (executable)
new mode 100644 (file)
index e85abd4..d932904
@@ -75,5 +75,23 @@ namespace System.Net {
                        get { return module; }
                        set { module = value; }
                }
+
+#if NET_2_0
+               static Exception GetMustImplement ()
+               {
+                       return new NotImplementedException ();
+               }
+               
+               [MonoTODO]
+               public bool MutuallyAuthenticated
+               {
+                       get {
+                               throw GetMustImplement ();
+                       }
+                       set {
+                               throw GetMustImplement ();
+                       }
+               }
+#endif         
        }
 }