Ukuran unggah maks untuk situs web Core ASP.MVC

public void ConfigureServices(IServiceCollection services)
{
    services.Configure<FormOptions>(options =>
    {
        options.MultipartBodyLengthLimit = 52428800;

    });

    services.AddMvc();
}
Tareq Saleh