| 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.3.13+628b0876960af3ee3454c99b7985dbb5e1c46bf0
NLog.Web (in NLog.Web.dll) Version: 5.3.13+628b0876960af3ee3454c99b7985dbb5e1c46bf0
Syntax public 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