IAppDomainFactory.cs 584 B

123456789101112131415161718192021222324252627
  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. using System.Runtime.InteropServices;
  11. namespace System.Web.Hosting
  12. {
  13. [Guid ("e6e21054-a7dc-4378-877d-b7f4a2d7e8ba")]
  14. [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
  15. public interface IAppDomainFactory
  16. {
  17. object Create ([In] string module,
  18. [In] string typeName,
  19. [In] string appId,
  20. [In] string appPath,
  21. [In] string strUrlOfAppOrigin,
  22. [In] int iZone);
  23. }
  24. }