WebPageTraceListener.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 to a Web page or to the ASP.NET trace viewer.
Overloads
Write(String) |
Writes a message to a Web page or to the ASP.NET trace viewer. |
Write(String, String) |
Writes a category name and a message to a Web page or to the ASP.NET trace viewer. |
Write(String)
Writes a message to a Web page or to the ASP.NET trace viewer.
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
The Write method does not write to the Trace object output, even if it is enabled in the configuration file.
See also
Applies to
Write(String, String)
Writes a category name and a message to a Web page or to the ASP.NET trace viewer.
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
A category name used to organize the output.
Remarks
The Write method does not write to the Trace object output, even if it is enabled in the configuration file.