Tracer.TraceInformation Method

Definition

Overloads

TraceInformation(String)

Traces an information event.

TraceInformation(String, Object)

Traces an information event.

TraceInformation(String, Object[])

Traces an information event.

TraceInformation(String, Object, Object)

Traces an information event.

TraceInformation(String)

Traces an information event.

public:
 virtual 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
override this.TraceInformation : string -> unit
Public Sub TraceInformation (message As String)

Parameters

message
String

The message.

Implements

Applies to

TraceInformation(String, Object)

Traces an information event.

public:
 virtual 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
override this.TraceInformation : string * obj -> unit
Public Sub TraceInformation (message As String, arg0 As Object)

Parameters

message
String

The message.

arg0
Object

The argument.

Implements

Applies to

TraceInformation(String, Object[])

Traces an information event.

public:
 virtual void TraceInformation(System::String ^ message, ... cli::array <System::Object ^> ^ args);
public void TraceInformation (string message, params object[] args);
abstract member TraceInformation : string * obj[] -> unit
override this.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

Implements

Applies to

TraceInformation(String, Object, Object)

Traces an information event.

public:
 virtual 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
override this.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.

Implements

Applies to