IAppDomainFactory.cs 377 B

123456789101112131415161718
  1. //
  2. // System.Web.Hosting.IAppDomainFactory.cs
  3. //
  4. // Author:
  5. // Bob Smith <[email protected]>
  6. //
  7. // (C) Bob Smith
  8. //
  9. using System;
  10. namespace System.Web.Hosting
  11. {
  12. public interface IAppDomainFactory
  13. {
  14. object Create(in string module, in string typeName, in string appId, in string appPath, in string strUrlOfAppOrigin, in int iZone);
  15. }
  16. }