IAppDomainFactory.cs 411 B

123456789101112131415161718192021222324
  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 (string module,
  15. string typeName,
  16. string appId,
  17. string appPath,
  18. string strUrlOfAppOrigin,
  19. int iZone);
  20. }
  21. }