| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- //
- // System.Net.ServicePointManager
- //
- // Author:
- // Lawrence Pit ([email protected])
- //
- using System;
- using System.Security.Cryptography.X509Certificates;
- namespace System.Net
- {
- public class ServicePointManager
- {
-
- // Fields
-
- public const int DefaultNonPersistentConnectionLimit = 4;
- public const int DefaultPersistentConnectionLimit = 2;
-
- // Constructors
- private ServicePointManager ()
- {
- }
-
- // Properties
-
- [MonoTODO]
- public static ICertificatePolicy CertificatePolicy {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static int DefaultConnectionLimit {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static int MaxServicePointIdleTime {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static int MaxServicePoints {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- // Methods
-
- [MonoTODO]
- public static ServicePoint FindServicePoint (Uri address)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static ServicePoint FindServicePoint (string uriString, IWebProxy proxy)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static ServicePoint FindServicePoint (Uri address, IWebProxy proxy)
- {
- throw new NotImplementedException ();
- }
- }
- }
|