2003-07-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System / System.Net / ICredentialLookup.cs
1 //
2 // System.Net.ICredential.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //   Duncan Mak (duncan@ximian.com)
7 //
8
9 namespace System.Net {
10
11         // <remarks>
12         //   Base authentication interface for Web clients.
13         // </remarks>
14         public interface ICredentials 
15         {
16                 NetworkCredential GetCredential (Uri uri, string authType);
17         }
18 }