2003-04-11 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / System / System.Net / ICredentialLookup.cs
index 3e68efe955ab03e1de6ab5037bcd867c254586bb..26b48ba9860b4483c31206cfa06dd3309ed362d7 100755 (executable)
@@ -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 {
        // <remarks>
        //   Base authentication interface for Web clients.
        // </remarks>
-       public interface ICredential {
-               
-               NetworkCredential GetCredential (string uri, string AuthType);
+       public interface ICredential
+       {
+               NetworkCredential GetCredential (Uri uri, string authType);
        }
 }