Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/Microsoft.Win32')
-rw-r--r--mcs/class/System/Microsoft.Win32/ChangeLog5
-rw-r--r--mcs/class/System/Microsoft.Win32/IntranetZoneCredentialPolicy.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/System/Microsoft.Win32/ChangeLog b/mcs/class/System/Microsoft.Win32/ChangeLog
index a7cde807b63..3c6d72a266d 100644
--- a/mcs/class/System/Microsoft.Win32/ChangeLog
+++ b/mcs/class/System/Microsoft.Win32/ChangeLog
@@ -1,3 +1,8 @@
+2005-10-28 Sebastien Pouliot <sebastien@ximian.com>
+
+ * IntranetZoneCredentialPolicy.cs: ShouldSendCredential was changed to
+ virtual in 2.0 final.
+
2005-10-18 Sebastien Pouliot <sebastien@ximian.com>
* TimerElapsedEventArgs.cs: Re-added [ComVisible (false)] attribute
diff --git a/mcs/class/System/Microsoft.Win32/IntranetZoneCredentialPolicy.cs b/mcs/class/System/Microsoft.Win32/IntranetZoneCredentialPolicy.cs
index 23b744bbded..e8c377229f9 100644
--- a/mcs/class/System/Microsoft.Win32/IntranetZoneCredentialPolicy.cs
+++ b/mcs/class/System/Microsoft.Win32/IntranetZoneCredentialPolicy.cs
@@ -43,7 +43,7 @@ namespace Microsoft.Win32 {
{
}
- public bool ShouldSendCredential (Uri challengeUri, WebRequest request,
+ public virtual bool ShouldSendCredential (Uri challengeUri, WebRequest request,
NetworkCredential credential, IAuthenticationModule authenticationModule)
{
Zone z = Zone.CreateFromUrl (challengeUri.AbsoluteUri);