| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // System.Net.BasicClient
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2003 Ximian, Inc (http://www.ximian.com)
- //
- namespace System.Net
- {
- class BasicClient : IAuthenticationModule
- {
- [MonoTODO]
- public Authorization Authenticate (string challenge, WebRequest webRequest, ICredentials credentials)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public virtual Authorization PreAuthenticate (WebRequest webRequest, ICredentials credentials)
- {
- throw new NotImplementedException ();
- }
- public virtual string AuthenticationType {
- get { return "Basic"; }
- }
- public virtual bool CanPreAuthenticate {
- get { return true; }
- }
- }
- }
|