2007-06-21 Dick Porter <dick@ximian.com>
[mono.git] / mcs / class / System / System.Net / Authorization.cs
index e85abd49f2dc9b6997518aca15e648575ff57fda..d932904a4e3511cc170eb858eede53f9a5800475 100644 (file)
@@ -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         
        }
 }