Asp.Net Core API. - API Asp.Net Framework .Net Core. Asp.Net Framework, .Net Core. , , System.NotSupportedException: 'Specified method is not supported.'
Request.Body.Seek(0, SeekOrigin.Begin);
var streamReader = new StreamReader(Request.Body);
bodyData = await streamReader.ReadToEndAsync();

, , , , .
bodyData = await new StreamReader(Request.Body, Encoding.Default).ReadToEndAsync();
System.Text.
, .