WebPageTraceListener.WriteLine Method

Definition

Writes a message to a Web page or to the ASP.NET trace viewer.

Overloads

WriteLine(String)

Writes a message to a Web page or to the ASP.NET trace viewer.

WriteLine(String, String)

Writes a category name and a message to a Web page or to the ASP.NET trace viewer.

WriteLine(String)

Writes a message to a Web page or to the ASP.NET trace viewer.

public:
 override void WriteLine(System::String ^ message);
public override void WriteLine (string message);
override this.WriteLine : string -> unit
Public Overrides Sub WriteLine (message As String)

Parameters

message
String

The message to write.

Remarks

The WriteLine method does not write to the Trace object output, even if it is enabled in the configuration file.

Applies to

WriteLine(String, String)

Writes a category name and a message to a Web page or to the ASP.NET trace viewer.

public:
 override void WriteLine(System::String ^ message, System::String ^ category);
public override void WriteLine (string message, string category);
override this.WriteLine : string * string -> unit
Public Overrides Sub WriteLine (message As String, category As String)

Parameters

message
String

The message to write.

category
String

A category name used to organize the output.

Remarks

The WriteLine method does not write to the Trace object output, even if it is enabled in the configuration file.

Applies to