3e68efe955ab03e1de6ab5037bcd867c254586bb
[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 //
7
8 namespace System.Net {
9
10         // <remarks>
11         //   Base authentication interface for Web clients.
12         // </remarks>
13         public interface ICredential {
14                 
15                 NetworkCredential GetCredential (string uri, string AuthType);
16         }
17 }