You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
307 B

4 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Text;
  5. namespace Apewer.AspNetBridge
  6. {
  7. /// <summary></summary>
  8. public class StreamContent : HttpContent
  9. {
  10. /// <summary></summary>
  11. public StreamContent(Stream stream) => Stream = stream;
  12. }
  13. }