X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem%2FSystem.Net%2FAuthorization.cs;h=a80845485b16c6be4be077ac6d0ec7ba0ce69445;hb=a4a3aea41e3dcf845181c2a86f468fca22d18e4f;hp=e85abd49f2dc9b6997518aca15e648575ff57fda;hpb=d49951ccf584ba637afb1dab7fff714478e3174d;p=mono.git diff --git a/mcs/class/System/System.Net/Authorization.cs b/mcs/class/System/System.Net/Authorization.cs index e85abd49f2d..a80845485b1 100644 --- a/mcs/class/System/System.Net/Authorization.cs +++ b/mcs/class/System/System.Net/Authorization.cs @@ -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 (); + } + } } }