Trace.TraceError 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 error information to the trace listeners in the Listeners collection.
Overloads
TraceError(String) |
Writes an error message to the trace listeners in the Listeners collection using the specified message. |
TraceError(String, Object[]) |
Writes an error message to the trace listeners in the Listeners collection using the specified array of objects and formatting information. |
TraceError(String)
- Source:
- Trace.cs
- Source:
- Trace.cs
- Source:
- Trace.cs
Writes an error message to the trace listeners in the Listeners collection using the specified message.
public:
static void TraceError(System::String ^ message);
[System.Diagnostics.Conditional("TRACE")]
public static void TraceError (string? message);
[System.Diagnostics.Conditional("TRACE")]
public static void TraceError (string message);
[<System.Diagnostics.Conditional("TRACE")>]
static member TraceError : string -> unit
Public Shared Sub TraceError (message As String)
Parameters
- message
- String
The informative message to write.
- Attributes
Remarks
TraceError calls the TraceEvent
method for each trace listener, with the trace event type Error, passing the informative message as the message string.
See also
Applies to
TraceError(String, Object[])
- Source:
- Trace.cs
- Source:
- Trace.cs
- Source:
- Trace.cs
Writes an error message to the trace listeners in the Listeners collection using the specified array of objects and formatting information.
public:
static void TraceError(System::String ^ format, ... cli::array <System::Object ^> ^ args);
[System.Diagnostics.Conditional("TRACE")]
public static void TraceError (string format, params object?[]? args);
[System.Diagnostics.Conditional("TRACE")]
public static void TraceError (string format, params object[] args);
[<System.Diagnostics.Conditional("TRACE")>]
static member TraceError : string * obj[] -> unit
Public Shared Sub TraceError (format As String, ParamArray args As Object())
Parameters
- format
- String
A format string that contains zero or more format items, which correspond to objects in the args
array.
- args
- Object[]
An object
array containing zero or more objects to format.
- Attributes
Remarks
TraceError calls the TraceEvent
methods in the trace listeners with the trace event type Error, passing the message content as an object array with formatting information. See the Format method for more information about the format
and args
parameters.