Files
Umbraco-CMS/src/Umbraco.Core/Configuration/Models/RuntimeSettings.cs

23 lines
650 B
C#
Raw Normal View History

// Copyright (c) Umbraco.
// See LICENSE for more details.
namespace Umbraco.Cms.Core.Configuration.Models
2020-03-16 14:02:08 +01:00
{
/// <summary>
/// Typed configuration options for runtime settings.
/// </summary>
[UmbracoOptions(Constants.Configuration.ConfigRuntime)]
public class RuntimeSettings
2020-03-16 14:02:08 +01:00
{
/// <summary>
/// Gets or sets a value for the maximum query string length.
/// </summary>
public int? MaxQueryStringLength { get; set; }
2020-03-16 14:02:08 +01:00
/// <summary>
2021-09-15 13:40:08 +02:00
/// Gets or sets a value for the maximum request length in kb.
/// </summary>
public int? MaxRequestLength { get; set; }
2020-03-16 14:02:08 +01:00
}
}