Apache log4net� SDK Documentation - Microsoft .NET Framework 4.0

LoggingEvent.FixVolatileData�Method�(Boolean)

NOTE: This method is now obsolete.

Use Fix property


Fixes instance fields that hold volatile data.

[Visual�Basic]
Overloads�Public�Sub�FixVolatileData( _
���ByVal fastButLoose�As�Boolean�_
)
[C#]
public�void�FixVolatileData(
���boolfastButLoose
);

Parameters

fastButLoose
Set to true to not fix data that takes a long time to fix.

Remarks

Some of the values in instances of LoggingEvent are considered volatile, that is the values are correct at the time the event is delivered to appenders, but will not be consistent at any time afterwards. If an event is to be stored and then processed at a later time these volatile values must be fixed by calling FixVolatileData. There is a performance penalty for incurred by calling FixVolatileData but it is essential to maintaining data consistency.

The fastButLoose param controls the data that is fixed. Some of the data that can be fixed takes a long time to generate, therefore if you do not require those settings to be fixed they can be ignored by setting the fastButLoose param to true. This setting will ignore the LocationInformation and UserName settings.

Set fastButLoose to false to ensure that all settings are fixed.

See Also

LoggingEvent Class | log4net.Core Namespace | LoggingEvent.FixVolatileData Overload List