NLog Logging Library

Logger.Trace Method

Writes the diagnostic message at the Trace level using the specified format provider and format parameters.

Overload List

Writes the diagnostic message at the Trace level.

public void Trace(IFormatProvider,object);

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

public void Trace(IFormatProvider,string,bool);

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

public void Trace(IFormatProvider,string,byte);

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

public void Trace(IFormatProvider,string,char);

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

public void Trace(IFormatProvider,string,decimal);

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

public void Trace(IFormatProvider,string,double);

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

public void Trace(IFormatProvider,string,int);

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

public void Trace(IFormatProvider,string,long);

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

public void Trace(IFormatProvider,string,object);

Writes the diagnostic message at the Trace level using the specified parameters and formatting them with the supplied format provider.

public void Trace(IFormatProvider,string,params object[]);

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

public void Trace(IFormatProvider,string,sbyte);

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

public void Trace(IFormatProvider,string,float);

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

public void Trace(IFormatProvider,string,string);

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

public void Trace(IFormatProvider,string,uint);

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

public void Trace(IFormatProvider,string,ulong);

Writes the diagnostic message at the Trace level.

public void Trace(object);

Writes the diagnostic message at the Trace level.

public void Trace(string);

Writes the diagnostic message at the Trace level using the specified Boolean as a parameter.

public void Trace(string,bool);

Writes the diagnostic message at the Trace level using the specified Byte as a parameter.

public void Trace(string,byte);

Writes the diagnostic message at the Trace level using the specified Char as a parameter.

public void Trace(string,char);

Writes the diagnostic message at the Trace level using the specified Decimal as a parameter.

public void Trace(string,decimal);

Writes the diagnostic message at the Trace level using the specified Double as a parameter.

public void Trace(string,double);

Writes the diagnostic message at the Trace level using the specified Int32 as a parameter.

public void Trace(string,int);

Writes the diagnostic message at the Trace level using the specified Int64 as a parameter.

public void Trace(string,long);

Writes the diagnostic message at the Trace level using the specified Object as a parameter.

public void Trace(string,object);

Writes the diagnostic message at the Trace level using the specified parameters.

public void Trace(string,object,object);

Writes the diagnostic message at the Trace level using the specified parameters.

public void Trace(string,object,object,object);

Writes the diagnostic message at the Trace level using the specified parameters.

public void Trace(string,params object[]);

Writes the diagnostic message at the Trace level using the specified SByte as a parameter.

public void Trace(string,sbyte);

Writes the diagnostic message at the Trace level using the specified Single as a parameter.

public void Trace(string,float);

Writes the diagnostic message at the Trace level using the specified String as a parameter.

public void Trace(string,string);

Writes the diagnostic message at the Trace level using the specified UInt32 as a parameter.

public void Trace(string,uint);

Writes the diagnostic message at the Trace level using the specified UInt64 as a parameter.

public void Trace(string,ulong);

See Also

Logger Class | NLog Namespace