ApplicationHost.cs 332 B

1234567891011121314151617
  1. //
  2. // System.Web.Hosting.ApplicationHost.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 ApplicationHost
  13. public static object CreateApplicationHost(Type hostType, string virtualDir, string physicalDir);
  14. }
  15. }