Просмотр исходного кода

2006-02-02 Gonzalo Paniagua Javier <[email protected]>

	* HttpWebRequest.cs: dummy implementation of UnsafeAuthenticationBlah
	property.


svn path=/trunk/mcs/; revision=56500
Gonzalo Paniagua Javier 20 лет назад
Родитель
Сommit
67eb50c8bb

+ 5 - 0
mcs/class/System/System.Net/ChangeLog

@@ -1,3 +1,8 @@
+2006-02-02 Gonzalo Paniagua Javier <[email protected]>
+
+	* HttpWebRequest.cs: dummy implementation of UnsafeAuthenticationBlah
+	property.
+
 2006-02-01  Carlos Alberto Cortez <[email protected]>
 
 	* FtpRequestCreator.cs: 

+ 3 - 2
mcs/class/System/System.Net/HttpWebRequest.cs

@@ -474,11 +474,12 @@ namespace System.Net
 		}
 
 #if NET_1_1
+		bool unsafe_auth_blah;
 		[MonoTODO]
 		public bool UnsafeAuthenticatedConnectionSharing
 		{
-			get { throw new NotImplementedException (); }
-			set { throw new NotImplementedException (); }
+			get { return unsafe_auth_blah; }
+			set { unsafe_auth_blah = value; }
 		}
 #endif