More implementation/stubbing.
[mono.git] / mcs / class / System.Web / System.Web.Hosting / IAppDomainFactory.cs
1 //
2 // System.Web.Hosting.IAppDomainFactory.cs
3 //
4 // Author:
5 //   Bob Smith <bob@thestuff.net>
6 //
7 // (C) Bob Smith
8 //
9
10 using System;
11
12 namespace System.Web.Hosting
13 {
14         public interface IAppDomainFactory
15         {
16                 object Create(in string module, in string typeName, in string appId, in string appPath, in string strUrlOfAppOrigin, in int iZone);
17         }
18 }