TraceContextRecord Constructor (String^, String^, Boolean, Exception^)
.NET Framework (current version)
Initializes a new instance of the TraceContextRecord class.
Assembly: System.Web (in System.Web.dll)
public: TraceContextRecord( String^ category, String^ msg, bool isWarning, Exception^ errorInfo )
Parameters
- category
-
Type:
System::String^
The trace category that receives the message.
- msg
-
Type:
System::String^
The trace message.
- isWarning
-
Type:
System::Boolean
true if the method associated with the TraceContextRecord is the Warn method; false if the tracing method is the Write method.
- errorInfo
-
Type:
System::Exception^
A Exception object that contains additional error information.
Every call to the TraceContext::Write and TraceContext::Warn methods generates a TraceContextRecord object that is added to the TraceContextEventArgs::TraceRecords messages collection. The Warn method call sets the IsWarning property to true, while the Write method calls set it to false.
.NET Framework
Available since 2.0
Available since 2.0
Show: