[This is preliminary documentation and is subject to change.]

Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.

Namespace:  NLog
Assembly:  NLog (in NLog.dll) Version: 2.0.0.0

Syntax

C#
public void Trace(
	IFormatProvider formatProvider,
	string message,
	double argument
)
Visual Basic (Declaration)
Public Sub Trace ( _
	formatProvider As IFormatProvider, _
	message As String, _
	argument As Double _
)
Visual C++
public:
void Trace(
	IFormatProvider^ formatProvider, 
	String^ message, 
	double argument
)

Parameters

formatProvider
Type: System..::.IFormatProvider
An IFormatProvider that supplies culture-specific formatting information.
message
Type: System..::.String
A string containing one format item.
argument
Type: System..::.Double
The argument to format.

See Also