This documentation is archived and is not being maintained.
TraceContextRecord Constructor
Visual Studio 2010
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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: