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