ITracer.TraceInformation Method

Definition

Overloads

TraceInformation(String)

Traces an information event with the specified message.

TraceInformation(String, Object)

Traces an information event with the specified message and argument.

TraceInformation(String, Object[])

Traces an information event.

TraceInformation(String, Object, Object)

Traces an information event with the specified message and arguments.

TraceInformation(String)

Traces an information event with the specified message.

public:
 void TraceInformation(System::String ^ message);
public:
 void TraceInformation(Platform::String ^ message);
void TraceInformation(std::wstring const & message);
public void TraceInformation (string message);
abstract member TraceInformation : string -> unit
Public Sub TraceInformation (message As String)

Parameters

message
String

The message.

Applies to

TraceInformation(String, Object)

Traces an information event with the specified message and argument.

public:
 void TraceInformation(System::String ^ message, System::Object ^ arg0);
public:
 void TraceInformation(Platform::String ^ message, Platform::Object ^ arg0);
void TraceInformation(std::wstring const & message, winrt::Windows::Foundation::IInspectable const & arg0);
public void TraceInformation (string message, object arg0);
abstract member TraceInformation : string * obj -> unit
Public Sub TraceInformation (message As String, arg0 As Object)

Parameters

message
String

The message.

arg0
Object

The argument.

Applies to

TraceInformation(String, Object[])

Traces an information event.

public:
 void TraceInformation(System::String ^ message, ... cli::array <System::Object ^> ^ args);
public void TraceInformation (string message, params object[] args);
abstract member TraceInformation : string * obj[] -> unit
Public Sub TraceInformation (message As String, ParamArray args As Object())

Parameters

message
String

The message to display

args
Object[]

The arguments to format into the message

Applies to

TraceInformation(String, Object, Object)

Traces an information event with the specified message and arguments.

public:
 void TraceInformation(System::String ^ message, System::Object ^ arg0, System::Object ^ arg1);
public:
 void TraceInformation(Platform::String ^ message, Platform::Object ^ arg0, Platform::Object ^ arg1);
void TraceInformation(std::wstring const & message, winrt::Windows::Foundation::IInspectable const & arg0, winrt::Windows::Foundation::IInspectable const & arg1);
public void TraceInformation (string message, object arg0, object arg1);
abstract member TraceInformation : string * obj * obj -> unit
Public Sub TraceInformation (message As String, arg0 As Object, arg1 As Object)

Parameters

message
String

The message.

arg0
Object

The first argument.

arg1
Object

The second argument.

Applies to