ICredentialLookup.cs 302 B

1234567891011121314151617
  1. //
  2. // System.Net.ICredential.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. namespace System.Net {
  8. // <remarks>
  9. // Base authentication interface for Web clients.
  10. // </remarks>
  11. public interface ICredential {
  12. NetworkCredential GetCredential (string uri, string AuthType);
  13. }
  14. }