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