Click or drag to resize

ReplaceLayoutRendererWrapper Class

Replaces a string in the output of another layout with another string.
Inheritance Hierarchy
SystemObject
  NLog.LayoutRenderersLayoutRenderer
    NLog.LayoutRenderers.WrappersWrapperLayoutRendererBase
      NLog.LayoutRenderers.WrappersReplaceLayoutRendererWrapper

Namespace:  NLog.LayoutRenderers.Wrappers
Assembly:  NLog (in NLog.dll) Version: 6.0.0+cfb73701cda54e2410b006f649f072e90daef707
Syntax
public sealed class ReplaceLayoutRendererWrapper : WrapperLayoutRendererBase

The ReplaceLayoutRendererWrapper type exposes the following members.

Constructors
  NameDescription
Public methodReplaceLayoutRendererWrapper
Initializes a new instance of the ReplaceLayoutRendererWrapper class
Top
Properties
  NameDescription
Public propertyIgnoreCase
Gets or sets a value indicating whether to ignore case.
Public propertyInner
Gets or sets the wrapped layout. [DefaultParameter] so Inner: is not required if it's the first
(Inherited from WrapperLayoutRendererBase.)
Public propertyReplaceWith
Gets or sets the replacement string.
Public propertySearchFor
Gets or sets the text to search for.
Public propertyWholeWords
Gets or sets a value indicating whether to search for whole words
Top
Methods
  NameDescription
Public methodRender
Renders the value of layout renderer in the context of the specified log event.
(Inherited from LayoutRenderer.)
Public methodToString
Returns a string that represents the current object.
(Inherited from LayoutRenderer.)
Top
Remarks
Examples
${replace:searchFor=foo:replaceWith=bar:inner=${message}}
See Also