| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 |
- //
- // System.Net.WebRequest
- //
- // Authors:
- // Lawrence Pit ([email protected])
- //
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Collections;
- using System.Collections.Specialized;
- using System.Configuration;
- using System.IO;
- using System.Runtime.Serialization;
- #if NET_2_0
- using System.Net.Configuration;
- #endif
- namespace System.Net
- {
- [Serializable]
- public abstract class WebRequest : MarshalByRefObject, ISerializable
- {
- static HybridDictionary prefixes = new HybridDictionary ();
-
- // Constructors
-
- static WebRequest ()
- {
- #if NET_2_0 && CONFIGURATION_DEP
- object cfg = ConfigurationManager.GetSection ("system.net/webRequestModules");
- WebRequestModulesSection s = cfg as WebRequestModulesSection;
- if (s != null) {
- foreach (WebRequestModuleElement el in
- s.WebRequestModules)
- AddPrefix (el.Prefix, el.Type);
- return;
- }
- #endif
- ConfigurationSettings.GetConfig ("system.net/webRequestModules");
- }
-
- protected WebRequest ()
- {
- }
-
- protected WebRequest (SerializationInfo serializationInfo, StreamingContext streamingContext)
- {
- }
-
- // Properties
-
- public virtual string ConnectionGroupName {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- public virtual long ContentLength {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- public virtual string ContentType {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- public virtual ICredentials Credentials {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- public virtual WebHeaderCollection Headers {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- public virtual string Method {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- public virtual bool PreAuthenticate {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- public virtual IWebProxy Proxy {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- public virtual Uri RequestUri {
- get { throw new NotImplementedException (); }
- }
-
- public virtual int Timeout {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- #if NET_2_0
- volatile static IWebProxy proxy;
- static readonly object lockobj = new object ();
-
- public static IWebProxy DefaultWebProxy {
- get {
- lock (lockobj) {
- if (proxy == null)
- proxy = GetDefaultWebProxy ();
- return proxy;
- }
- }
- set {
- if (value == null)
- throw new ArgumentNullException ("WebRequest.DefaultWebProxy",
- "null IWebProxy not allowed.");
- proxy = value;
- }
- }
-
- [MonoTODO("Needs to respect Module, Proxy.AutoDetect, and Proxy.ScriptLocation config settings")]
- static IWebProxy GetDefaultWebProxy ()
- {
- WebProxy p = null;
-
- #if CONFIGURATION_DEP
- System.Configuration.Configuration config = ConfigurationManager.OpenMachineConfiguration ();
- DefaultProxySection sec = config.GetSection ("system.net/defaultProxy") as DefaultProxySection;
- if (sec == null)
- return GlobalProxySelection.GetEmptyWebProxy ();
-
- ProxyElement pe = sec.Proxy;
-
- if ((pe.UseSystemDefault == ProxyElement.UseSystemDefaultValues.True) && (pe.ProxyAddress == null))
- p = (WebProxy) GetSystemWebProxy ();
- else
- p = new WebProxy ();
-
- if (pe.ProxyAddress != null)
- p.Address = pe.ProxyAddress;
-
- if (pe.BypassOnLocal != ProxyElement.BypassOnLocalValues.Unspecified)
- p.BypassProxyOnLocal = (pe.BypassOnLocal == ProxyElement.BypassOnLocalValues.True);
- #endif
- return p;
- }
- #endif
- // Methods
-
- public virtual void Abort()
- {
- throw new NotImplementedException ();
- }
-
- public virtual IAsyncResult BeginGetRequestStream (AsyncCallback callback, object state)
- {
- throw new NotImplementedException ();
- }
-
- public virtual IAsyncResult BeginGetResponse (AsyncCallback callback, object state)
- {
- throw new NotImplementedException ();
- }
- public static WebRequest Create (string requestUriString)
- {
- if (requestUriString == null)
- throw new ArgumentNullException ("requestUriString");
- return Create (new Uri (requestUriString));
- }
-
- public static WebRequest Create (Uri requestUri)
- {
- if (requestUri == null)
- throw new ArgumentNullException ("requestUri");
- return GetCreator (requestUri.AbsoluteUri).Create (requestUri);
- }
-
- public static WebRequest CreateDefault (Uri requestUri)
- {
- if (requestUri == null)
- throw new ArgumentNullException ("requestUri");
- return GetCreator (requestUri.Scheme).Create (requestUri);
- }
- public virtual Stream EndGetRequestStream (IAsyncResult asyncResult)
- {
- throw new NotImplementedException ();
- }
-
- public virtual WebResponse EndGetResponse (IAsyncResult asyncResult)
- {
- throw new NotImplementedException ();
- }
-
- public virtual Stream GetRequestStream()
- {
- throw new NotImplementedException ();
- }
-
- public virtual WebResponse GetResponse()
- {
- throw new NotImplementedException ();
- }
-
- #if NET_2_0
- [MonoTODO("Look in other places for proxy config info")]
- public static IWebProxy GetSystemWebProxy ()
- {
- string address = Environment.GetEnvironmentVariable ("http_proxy");
- if (address != null) {
- try {
- WebProxy p = new WebProxy (address);
- return p;
- } catch (UriFormatException) {}
- }
- return new WebProxy ();
- }
- #endif
- void ISerializable.GetObjectData (SerializationInfo serializationInfo,
- StreamingContext streamingContext)
- {
- throw new NotSupportedException ();
- }
- public static bool RegisterPrefix (string prefix, IWebRequestCreate creator)
- {
- if (prefix == null)
- throw new ArgumentNullException("prefix");
- if (creator == null)
- throw new ArgumentNullException("creator");
-
- lock (prefixes.SyncRoot) {
- string lowerCasePrefix = prefix.ToLower ();
- if (prefixes.Contains (lowerCasePrefix))
- return false;
- prefixes.Add (lowerCasePrefix, creator);
- }
- return true;
- }
-
- private static IWebRequestCreate GetCreator (string prefix)
- {
- int longestPrefix = -1;
- IWebRequestCreate creator = null;
- prefix = prefix.ToLower ();
- IDictionaryEnumerator e = prefixes.GetEnumerator ();
- while (e.MoveNext ()) {
- string key = e.Key as string;
- if (key.Length <= longestPrefix)
- continue;
-
- if (!prefix.StartsWith (key))
- continue;
-
- longestPrefix = key.Length;
- creator = (IWebRequestCreate) e.Value;
- }
-
- if (creator == null)
- throw new NotSupportedException (prefix);
-
- return creator;
- }
- internal static void ClearPrefixes ()
- {
- prefixes.Clear ();
- }
- internal static void RemovePrefix (string prefix)
- {
- prefixes.Remove (prefix);
- }
- internal static void AddPrefix (string prefix, string typeName)
- {
- Type type = Type.GetType (typeName);
- if (type == null)
- throw new ConfigurationException (String.Format ("Type {0} not found", typeName));
- AddPrefix (prefix, type);
- }
- internal static void AddPrefix (string prefix, Type type)
- {
- object o = Activator.CreateInstance (type, true);
- prefixes [prefix] = o;
- }
- }
- }
|