AppDomainFactory.cs 430 B

12345678910111213141516171819
  1. //
  2. // System.Web.Hosting.AppDomainFactory.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 sealed class AppDomainFactory : IAppDomainFactory
  13. {
  14. public AppDomainFactory();
  15. public object Create(string module, string typeName, string appId, string appPath, string strUrlOfAppOrigin, int iZone);
  16. }
  17. }