commit much of the virtualization support, stubbed out
[moon.git] / class / System.Windows / System.Net.Browser / ClientWebRequestCreate.cs
blob845ef84d73853d86cb8815899533a715b5149626
2 using System.Net;
3 using System.Reflection;
5 namespace System.Net.Browser {
7 public class ClientWebRequestCreate : IWebRequestCreate {
9 //
10 // This should create a 'real' web request, not one that uses the browser
11 // For now we will just use the browser web request
13 public WebRequest Create (Uri uri)
15 BrowserWebRequestCreate creator = new BrowserWebRequestCreate ();
16 return creator.Create (uri);