IFormOptionsMetadata Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Interface marking attributes that specify limits associated with reading a form.
public interface IFormOptionsMetadata
type IFormOptionsMetadata = interface
Public Interface IFormOptionsMetadata
- Derived
Properties
BufferBody |
Enables full request body buffering. Use this if multiple components need to read the raw stream. Defaults to false. |
BufferBodyLengthLimit |
If BufferBody is enabled, this is the limit for the total number of bytes that will be buffered. Forms that exceed this limit will throw an InvalidDataException when parsed. Defaults to 134,217,728 bytes, which is approximately 128MB. |
KeyLengthLimit |
A limit on the length of individual keys. Forms containing keys that exceed this limit will throw an InvalidDataException when parsed. Defaults to 2,048 bytes, which is approximately 2KB. |
MemoryBufferThreshold |
If BufferBody is enabled, this many bytes of the body will be buffered in memory. If this threshold is exceeded then the buffer will be moved to a temp file on disk instead. This also applies when buffering individual multipart section bodies. Defaults to 65,536 bytes, which is approximately 64KB. |
MultipartBodyLengthLimit |
/A limit for the length of each multipart body. Forms sections that exceed this limit will throw an InvalidDataException when parsed. Defaults to 134,217,728 bytes, which is approximately 128MB. |
MultipartBoundaryLengthLimit |
A limit for the length of the boundary identifier. Forms with boundaries that exceed this limit will throw an InvalidDataException when parsed. Defaults to 128 bytes. |
MultipartHeadersCountLimit |
A limit for the number of headers to allow in each multipart section. Headers with the same name will be combined. Form sections that exceed this limit will throw an InvalidDataException when parsed. Defaults to 16. |
MultipartHeadersLengthLimit |
A limit for the total length of the header keys and values in each multipart section. Form sections that exceed this limit will throw an InvalidDataException when parsed. Defaults to 16,384 bytes, which is approximately 16KB. |
ValueCountLimit |
A limit for the number of form entries to allow. Forms that exceed this limit will throw an InvalidDataException when parsed. Defaults to 1024. |
ValueLengthLimit |
A limit on the length of individual form values. Forms containing values that exceed this limit will throw an InvalidDataException when parsed. Defaults to 4,194,304 bytes, which is approximately 4MB. |