Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

Extensions.cs 493 B

1234567891011121314151617181920
  1. using System;
  2. using System.IO;
  3. using System.Text;
  4. using Microsoft.AspNetCore.Http;
  5. namespace MQTTnet.Server.Web
  6. {
  7. public static class Extensions
  8. {
  9. public static string ReadBodyAsString(this HttpRequest request)
  10. {
  11. if (request == null) throw new ArgumentNullException(nameof(request));
  12. using (var reader = new StreamReader(request.Body, Encoding.UTF8))
  13. {
  14. return reader.ReadToEnd();
  15. }
  16. }
  17. }
  18. }