TraceSwitch.TraceWarning Właściwość

Definicja

Pobiera wartość wskazującą, czy przełącznik zezwala na komunikaty ostrzegawcze.

public:
 property bool TraceWarning { bool get(); };
public bool TraceWarning { get; }
member this.TraceWarning : bool
Public ReadOnly Property TraceWarning As Boolean

Wartość właściwości

truejeśli właściwość jest ustawiona Level na Warning, Infolub Verbose; w przeciwnym razie . false

Przykłady

Poniższy przykład kodu tworzy nowy TraceSwitch element i używa przełącznika w celu określenia, czy emitować komunikaty o błędach. Przełącznik jest tworzony na poziomie klasy. MyMethod Zapisuje pierwszy komunikat o błędzie, jeśli właściwość jest ustawiona Level na TraceLevel.Warning wartość lub wyższą. Nie zapisuje jednak drugiego komunikatu o błędzie, MyMethod gdy wartość Level jest mniejsza niż TraceLevel.Verbose.

   // Class-level declaration.
   /* Create a TraceSwitch to use in the entire application.*/
private:
   static TraceSwitch^ mySwitch = gcnew TraceSwitch( "General", "Entire Application" );

public:
   static void MyMethod()
   {
      // Write the message if the TraceSwitch level is set to Warning or higher.
      if ( mySwitch->TraceWarning )
         Console::WriteLine( "My error message." );

      // Write the message if the TraceSwitch level is set to Verbose.
      if ( mySwitch->TraceVerbose )
         Console::WriteLine( "My second error message." );
   }

   static void main()
   {
      // Run the method that prints error messages based on the switch level.
      MyMethod();
   }
//Class-level declaration.
/* Create a TraceSwitch to use in the entire application.*/
static TraceSwitch mySwitch = new TraceSwitch("General", "Entire Application");

static public void MyMethod()
{
    // Write the message if the TraceSwitch level is set to Warning or higher.
    if (mySwitch.TraceWarning)
        Console.WriteLine("My error message.");

    // Write the message if the TraceSwitch level is set to Verbose.
    if (mySwitch.TraceVerbose)
        Console.WriteLine("My second error message.");
}

public static void Main(string[] args)
{
    // Run the method that prints error messages based on the switch level.
    MyMethod();
}
' Class-level declaration.
' Create a TraceSwitch to use in the entire application. 
Private Shared mySwitch As New TraceSwitch("General", "Entire Application")    

Public Shared Sub MyMethod()
    ' Write the message if the TraceSwitch level is set to Warning or higher.
    If mySwitch.TraceWarning Then
        Console.WriteLine("My error message.")
    End If 
    ' Write the message if the TraceSwitch level is set to Verbose.
    If mySwitch.TraceVerbose Then
        Console.WriteLine("My second error message.")
    End If
End Sub

Public Shared Sub Main()
    ' Run the method that prints error messages based on the switch level.
    MyMethod()
End Sub

Uwagi

Właściwości , , i można używać w połączeniu TraceErrorz klasami Debug i Trace do emitowania wszystkich komunikatów o określonej ważności lub większej.TraceVerboseTraceInfoTraceWarning Gdy właściwość jest ustawiona Level na TraceLevel.Warningwartość , są emitowane ostrzeżenia i komunikaty obsługujące błędy.

Dotyczy

Zobacz też