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:
authorSebastien Pouliot <sebastien@ximian.com>2005-10-28 22:35:35 +0400
committerSebastien Pouliot <sebastien@ximian.com>2005-10-28 22:35:35 +0400
commitd7daaa1cec9c9b1875d98a6de3743535c10feb96 (patch)
tree63171d322fcc6378e1aca3c3a0888f50ed22cc8c /mcs/class/System/Microsoft.Win32
parent4a813ed0db1731467bd0a23133a11f882237b1b3 (diff)
2005-10-28 Sebastien Pouliot <sebastien@ximian.com>
* IntranetZoneCredentialPolicy.cs: ShouldSendCredential was changed to virtual in 2.0 final. svn path=/trunk/mcs/; revision=52350
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);