2004-01-11 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[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 using System.Runtime.InteropServices;
12
13 namespace System.Web.Hosting
14 {
15         [Guid ("e6e21054-a7dc-4378-877d-b7f4a2d7e8ba")]
16         [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
17         public interface IAppDomainFactory
18         {
19                 object Create ([In] string module,
20                                [In] string typeName,
21                                [In] string appId,
22                                [In] string appPath,
23                                [In] string strUrlOfAppOrigin,
24                                [In] int iZone);
25         }
26 }
27