 | AspNetBufferingTargetWrapperGrowBufferAsNeeded Property |
Gets or sets a value indicating whether buffer should grow as needed.
Namespace:
NLog.Web.Targets.Wrappers
Assemblies:
NLog.Web.AspNetCore (in NLog.Web.AspNetCore.dll) Version: 5.5.0+9fe9421708749962bac8393d7cec5df976518ccb
NLog.Web (in NLog.Web.dll) Version: 5.5.0+9fe9421708749962bac8393d7cec5df976518ccb
Syntaxpublic bool GrowBufferAsNeeded { get; set; }
Public Property GrowBufferAsNeeded As Boolean
Get
Set
Dim instance As AspNetBufferingTargetWrapper
Dim value As Boolean
value = instance.GrowBufferAsNeeded
instance.GrowBufferAsNeeded = value
member GrowBufferAsNeeded : bool with get, set
Property Value
Type:
BooleanA value of
true if buffer should grow as needed; otherwise,
false.
Remarks
Value of
true causes the buffer to expand until
BufferGrowLimit is hit,
false causes the buffer to never expand and lose the earliest entries in case of overflow.
See Also