TraceSection.WriteToDiagnosticsTrace Property

 

Gets or sets a value indicating whether the messages emitted through the page trace are forwarded to an instance of the Trace class.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

<ConfigurationPropertyAttribute("writeToDiagnosticsTrace", DefaultValue := False)>
Public Property WriteToDiagnosticsTrace As Boolean

Property Value

Type: System.Boolean

true if the trace messages are sent to the Trace class; otherwise, false. The default is false.

The following code example shows how to use the WriteToDiagnosticsTrace property. This code example is part of a larger example provided for the TraceSection class.


' Get the current WriteToDiagnosticsTrace property value.
Dim writeToDiagnosticsTraceValue As Boolean = traceSection.WriteToDiagnosticsTrace

' Set the WriteToDiagnosticsTrace property to true.
traceSection.WriteToDiagnosticsTrace = True

.NET Framework
Available since 2.0
Return to top
Show: