IisTraceListener.WriteLine Method

Definition

Writes a message and a category name to the IisTraceListener.

Overloads

WriteLine(String)

Writes the specified message to the output of the IisTraceListener class.

WriteLine(String, String)

Writes the specified message and category name to the output of the IisTraceListener class.

WriteLine(String)

Writes the specified message to the output of the IisTraceListener class.

C#
public override void WriteLine(string message);

Parameters

message
String

The message to write.

Remarks

WriteLine is introduced in the .NET Framework 3.5. For more information, see Versions and Dependencies.

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 the specified message and category name to the output of the IisTraceListener class.

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

Parameters

message
String

The message to write.

category
String

Ignored. The IisTraceListener implementation of the TraceListener class disregards the category parameter.

Remarks

WriteLine is introduced in the .NET Framework 3.5. For more information, see Versions and Dependencies.

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