ICredentialLookup.cs 235 B

123456789101112131415
  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 ICredentials {
  12. }
  13. }