X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem%2FSystem.Net%2FICredentialLookup.cs;h=26b48ba9860b4483c31206cfa06dd3309ed362d7;hb=13bfc6eb3686841b6e71ec0b566a5fb542bdded4;hp=3e68efe955ab03e1de6ab5037bcd867c254586bb;hpb=0273a2dd786ade874dfc4684646a8dcab74090f7;p=mono.git diff --git a/mcs/class/System/System.Net/ICredentialLookup.cs b/mcs/class/System/System.Net/ICredentialLookup.cs index 3e68efe955a..26b48ba9860 100755 --- a/mcs/class/System/System.Net/ICredentialLookup.cs +++ b/mcs/class/System/System.Net/ICredentialLookup.cs @@ -3,6 +3,7 @@ // // Author: // Miguel de Icaza (miguel@ximian.com) +// Duncan Mak (duncan@ximian.com) // namespace System.Net { @@ -10,8 +11,8 @@ namespace System.Net { // // Base authentication interface for Web clients. // - public interface ICredential { - - NetworkCredential GetCredential (string uri, string AuthType); + public interface ICredentials + { + NetworkCredential GetCredential (Uri uri, string authType); } }