| 123456789101112131415161718192021222324 |
- //
- // System.Web.Hosting.IAppDomainFactory.cs
- //
- // Author:
- // Bob Smith <[email protected]>
- //
- // (C) Bob Smith
- //
- using System;
- namespace System.Web.Hosting
- {
- public interface IAppDomainFactory
- {
- object Create (string module,
- string typeName,
- string appId,
- string appPath,
- string strUrlOfAppOrigin,
- int iZone);
- }
- }
|