Emits the specified error message.
Namespace:
System.Diagnostics
Assembly:
System (in System.dll)
Visual Basic (Declaration)
<ConditionalAttribute("TRACE")> _
Public Shared Sub Fail ( _
message As String _
)
Dim message As String
Trace.Fail(message)
[ConditionalAttribute("TRACE")]
public static void Fail(
string message
)
[ConditionalAttribute(L"TRACE")]
public:
static void Fail(
String^ message
)
public static function Fail(
message : String
)
The default behavior for the default trace listener is to output the message parameter to a message box when the application runs in user-interface mode, and to the TraceListener instances in the Listeners collection.
You can customize this behavior by adding a TraceListener to, or by removing one from, the Listeners collection.
The following example uses the Fail method to print a message during exception handling.
Catch
Trace.Fail("Unknown Option " + option1 + ", using the default.")
End Try
catch (Exception) {
Trace.Fail("Unknown Option " + option + ", using the default.");
}
catch ( Exception^ )
{
#if defined(TRACE)
Trace::Fail( "Unknown Option " + option + ", using the default." );
#endif
}
catch(e : Exception)
{
@if(@TRACE)
Trace.Fail("Cannot find SpecialController.")
@end
}
You can also use the Fail method in a switch statement.
Select Case option1
Case OptionConsts.First
result = 1.0
' Insert additional cases.
Case Else
Trace.Fail(("Unknown Option " & option1))
result = 1.0
End Select
switch (option) {
case Option.First:
result = 1.0;
break;
// Insert additional cases.
default:
Trace.Fail("Unknown Option " + option);
result = 1.0;
break;
}
switch ( option )
{
case Option::First:
result = 1.0;
break;
// Insert additional cases.
default:
#if defined(TRACE)
Trace::Fail(String::Format("Unknown Option {0}", option));
#endif
result = 1.0;
break;
}
switch(option)
{
case 1:
result = 1.0
break
// Insert additional cases.
default:
@if(@TRACE)
Trace.Fail("Unexpected value: " + option)
@end
result = 0.0
}
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
.NET Compact Framework
Supported in: 3.5
XNA Framework
Supported in: 3.0, 2.0, 1.0
Reference