Насколько популярный действительно ли WPF как технология? [закрытый]

Вы также можете перемотать внутри контроллера, если хотите:

if (request?.ContentLength != null)
{
    request.EnableRewind();

    request.Body.Seek(0, SeekOrigin.Begin);

    using (var reader = new StreamReader(request.Body, Encoding.UTF8))
    {
        body = reader.ReadToEnd();

        //Do your thing with the body content
    }

}
19
задан Jason Bunting 1 September 2008 в 14:29
поделиться