IisTraceListener.Write Method

Definition

Writes a message, a category name, or the value of an object's ToString() method to the output of the IisTraceListener class.

Overloads

Write(String)

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

Write(String, String)

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

Remarks

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

Write(String)

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

public override void Write(string message);

Parameters

message
String

The message to write.

Remarks

Write 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

Write(String, String)

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

public override void Write(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

This overload of the Write method is provided for compatibility. This method does not use any values passed in the category parameter.

Write 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