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

Writes the diagnostic message at the Trace level.

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

Syntax

C#
public void Trace<T>(
	IFormatProvider formatProvider,
	T value
)
Visual Basic (Declaration)
Public Sub Trace(Of T) ( _
	formatProvider As IFormatProvider, _
	value As T _
)
Visual C++
public:
generic<typename T>
void Trace(
	IFormatProvider^ formatProvider, 
	T value
)

Parameters

formatProvider
Type: System..::.IFormatProvider
An IFormatProvider that supplies culture-specific formatting information.
value
Type: T
The value to be written.

Type Parameters

T
Type of the value.

See Also