formFieldLimit
Represents the limit for form field size in bytes for an ApplicationCall. This limit determines the maximum size allowed for form field data in a request.
The default value is 65536 bytes (64 KB).
To get the value of the formFieldLimit, use the getter:
val limit = call.formFieldLimit
Content copied to clipboard
To set the value of the formFieldLimit, use the setter:
call.formFieldLimit = limit
Content copied to clipboard