VirtualUserFormFile.cs
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

C#

  1. // -- FILE ------------------------------------------------------------------
  2. // name       : VirtualUserFormFile.cs
  3. // project    : Itenso Web User Forms
  4. // created    : Jani Giannoudis - 2008.10.30
  5. // language   : c#
  6. // environment: .NET 2.0
  7. // copyright  : (c) 2008 by Itenso GmbH, Switzerland
  8. // --------------------------------------------------------------------------
  9. using System;
  10. using System.IO;
  11. using System.Web.Hosting;
  12. namespace Itenso.WebUserForms.Runtime
  13. {
  14. // ------------------------------------------------------------------------
  15. internal class VirtualUserFormFile : VirtualFile
  16. {
  17. // ----------------------------------------------------------------------
  18. public VirtualUserFormFile( string virtualPath, Stream stream )
  19. : base( virtualPath )
  20. {
  21. if ( stream == null )
  22. {
  23. throw new ArgumentNullException( "stream" );
  24. }
  25. this.stream = stream;
  26. } // VirtualUserFormFile
  27. // ----------------------------------------------------------------------
  28. public Stream Stream
  29. {
  30. get { return this.stream; }
  31. } // Stream
  32. // ----------------------------------------------------------------------
  33. public override Stream Open()
  34. {
  35. return this.stream;
  36. } // Open
  37. // ----------------------------------------------------------------------
  38. // members
  39. private readonly Stream stream;
  40. } // class VirtualUserFormFile
  41. } // namespace Itenso.WebUserForms.Runtime
  42. // -- EOF -------------------------------------------------------------------