xxxxxxxxxx
public void ConfigureServices(IServiceCollection services)
{
services.Configure<IISServerOptions>(
options =>
{
options.MaxRequestBodySize = 64 * 1024;
}
);
}
xxxxxxxxxx
using System;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}