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.
|
- using System;
- using System.IO;
- using System.Text;
- using Microsoft.AspNetCore.Http;
-
- namespace MQTTnet.Server.Web
- {
- public static class Extensions
- {
- public static string ReadBodyAsString(this HttpRequest request)
- {
- if (request == null) throw new ArgumentNullException(nameof(request));
-
- using (var reader = new StreamReader(request.Body, Encoding.UTF8))
- {
- return reader.ReadToEnd();
- }
- }
- }
- }
|