WebPageTraceListener.Write Method

Definition

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.

See also

Applies to