Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-06-09 22:10:18 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-06-09 22:10:18 +0400
commit0f11ceba7fa4a5f92488458dbe05e554bfbac77f (patch)
treeeb24e26ae67bedf4adfd626076c14a4006d425bd /data
parentac3283997b3e4259138c8c61200c3eaee1b9d29a (diff)
Added webRequesModules configuration. Thanks to Lluis for pointing this out
svn path=/trunk/mono/; revision=15249
Diffstat (limited to 'data')
-rw-r--r--data/machine.config7
1 files changed, 7 insertions, 0 deletions
diff --git a/data/machine.config b/data/machine.config
index 59e682dddfb..d3bfb1ac0d6 100644
--- a/data/machine.config
+++ b/data/machine.config
@@ -29,6 +29,8 @@
type="System.Net.Configuration.NetAuthenticationModuleHandler, System" />
<section name="defaultProxy"
type="System.Net.Configuration.DefaultProxyHandler, System" />
+ <section name="webRequestModules"
+ type="System.Net.Configuration.WebRequestModuleHandler, System" />
</sectionGroup>
</configSections>
<system.net>
@@ -43,6 +45,11 @@
<!-- bypassonlocal and proxyaddress are ok -->
<!-- usessystemdefault is not supported -->
</defaultProxy>
+ <webRequestModules>
+ <add prefix="http" type="System.Net.HttpRequestCreator, System" />
+ <add prefix="https" type="System.Net.HttpRequestCreator, System" />
+ <add prefix="file" type="System.Net.FileWebRequestCreator, System" />
+ </webRequestModules>
</system.net>
<system.web>
<httpHandlers>