IisTraceListener.Write Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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(System::String ^ message);
public override void Write (string message);
override this.Write : string -> unit
Public Overrides Sub Write (message As String)
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
Write(String, String)
Writes the specified message and the specified category name to the output of the IisTraceListener class.
public:
override void Write(System::String ^ message, System::String ^ category);
public override void Write (string message, string category);
override this.Write : string * string -> unit
Public Overrides Sub Write (message As String, category As String)
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.