Merge pull request #2869 from BrzVlad/feature-mod-union-opt
[mono.git] / mcs / class / System / System.Net / Authorization.cs
index e85abd49f2dc9b6997518aca15e648575ff57fda..a80845485b16c6be4be077ac6d0ec7ba0ce69445 100644 (file)
@@ -42,15 +42,15 @@ namespace System.Net {
                {
                }
 
-               public Authorization (string token, bool complete
-                       : this (token, complete, null)
+               public Authorization (string token, bool finished
+                       : this (token, finished, null)
                {
                }
                
-               public Authorization (string token, bool complete, string connectionGroupId)
+               public Authorization (string token, bool finished, string connectionGroupId)
                {
                        this.token = token;
-                       this.complete = complete;
+                       this.complete = finished;
                        this.connectionGroupId = connectionGroupId;
                }
 
@@ -75,5 +75,21 @@ namespace System.Net {
                        get { return module; }
                        set { module = value; }
                }
+
+               static Exception GetMustImplement ()
+               {
+                       return new NotImplementedException ();
+               }
+               
+               [MonoTODO]
+               public bool MutuallyAuthenticated
+               {
+                       get {
+                               throw GetMustImplement ();
+                       }
+                       set {
+                               throw GetMustImplement ();
+                       }
+               }
        }
 }