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.

C#
public override void WriteLine(string message);

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

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

WriteLine(String, String)

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

C#
public override void WriteLine(string message, string category);

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

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1