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