AspNetRequestFormLayoutRenderer Class |
Namespace: NLog.Web.LayoutRenderers
The AspNetRequestFormLayoutRenderer type exposes the following members.
Name | Description | |
---|---|---|
AspNetRequestFormLayoutRenderer |
Initializes a new instance of the AspNetRequestFormLayoutRenderer class.
|
Name | Description | |
---|---|---|
Exclude | ||
HttpContextAccessor |
Provides access to the current request HttpContext.
(Inherited from AspNetLayoutRendererBase.) | |
Include | Obsolete. | |
Items |
Gets or sets the form keys to include in the output.
If null or empty array, all will be included.
| |
ItemSeparator |
Separator between key/value pair, and the next pair. Only used for Flat (Inherited from AspNetLayoutMultiValueRendererBase.) | |
LoggingConfiguration |
Gets the logging configuration this target is part of.
(Inherited from LayoutRenderer.) | |
LowerCaseKeys |
Convert the key to lowercase if true, otherwise render the raw value of key. Default is false.
(Inherited from AspNetLayoutMultiValueRendererBase.) | |
OutputFormat |
Determines how the output is rendered. Possible Value: FLAT, JSON. Default is FLAT.
(Inherited from AspNetLayoutMultiValueRendererBase.) | |
SingleAsArray | Obsolete.
Get or set whether single key/value-pair be rendered as Json-Array.
(Inherited from AspNetLayoutMultiValueRendererBase.) | |
ValueFormatter |
Value formatter
(Inherited from LayoutRenderer.) | |
ValueSeparator |
Separator between value and key. Only used for Flat (Inherited from AspNetLayoutMultiValueRendererBase.) | |
ValuesOnly |
Only render values if true, otherwise render key/value pairs.
(Inherited from AspNetLayoutMultiValueRendererBase.) |
Name | Description | |
---|---|---|
Append |
Validates that the HttpContext is available and delegates append to subclasses.StringBuilder.
(Inherited from AspNetLayoutRendererBase.) | |
CloseLayoutRenderer |
Closes the layout renderer.
(Inherited from AspNetLayoutRendererBase.) | |
DoAppend |
Renders the value of layout renderer in the context of the specified log event into StringBuilder.
(Overrides AspNetLayoutRendererBaseDoAppend(StringBuilder, LogEventInfo).) | |
GetCulture |
Get the CultureInfo for rendering the messages to a String (Inherited from LayoutRenderer.) | |
GetFormatProvider |
Get the IFormatProvider for rendering the messages to a String (Inherited from LayoutRenderer.) | |
GetRenderedItemSeparator |
Get the rendered ItemSeparator (Inherited from AspNetLayoutMultiValueRendererBase.) | |
GetRenderedValueSeparator |
Get the rendered ValueSeparator (Inherited from AspNetLayoutMultiValueRendererBase.) | |
InitializeLayoutRenderer |
Initializes the layout renderer.
(Inherited from LayoutRenderer.) | |
Render |
Renders the value of layout renderer in the context of the specified log event.
(Inherited from LayoutRenderer.) | |
ResolveServiceT |
Resolves the interface service-type from the service-repository
(Inherited from LayoutRenderer.) | |
SerializePairs |
Serialize multiple key/value pairs
(Inherited from AspNetLayoutMultiValueRendererBase.) | |
SerializeValues |
Serialize multiple values
(Inherited from AspNetLayoutMultiValueRendererBase.) | |
ToString | Returns a string that represents the current object. (Inherited from LayoutRenderer.) |
1${aspnet-request-form} - Produces - All Form Data from the Request with each key/value pair separated by a comma. 2${aspnet-request-form:Items=id,name} - Produces - Only Form Data from the Request with keys "id" and "name". 3${aspnet-request-form:Exclude=id,name} - Produces - All Form Data from the Request except the keys "id" and "name". 4${aspnet-request-form:ItemSeparator=${newline}} - Produces - All Form Data from the Request with each key/value pair separated by a new line.