AppDomainFactory.cs 699 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // System.Web.Hosting.AppDomainFactory.cs
  3. //
  4. // Author:
  5. // Bob Smith <[email protected]>
  6. // Gonzalo Paniagua ([email protected])
  7. //
  8. // (C) Bob Smith
  9. // (c) 2002 Ximian, Inc. (http://www.ximian.com)
  10. //
  11. using System;
  12. namespace System.Web.Hosting
  13. {
  14. public sealed class AppDomainFactory : IAppDomainFactory
  15. {
  16. [MonoTODO]
  17. public AppDomainFactory ()
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. [MonoTODO]
  22. public object Create (string module,
  23. string typeName,
  24. string appId,
  25. string appPath,
  26. string strUrlOfAppOrigin,
  27. int iZone)
  28. {
  29. throw new NotImplementedException ();
  30. }
  31. }
  32. }