DefaultTraceListener.AssertUiEnabled Vlastnost

Definice

Získá nebo nastaví hodnotu označující, zda je aplikace spuštěna v režimu uživatelského rozhraní.

public:
 property bool AssertUiEnabled { bool get(); void set(bool value); };
public bool AssertUiEnabled { get; set; }
member this.AssertUiEnabled : bool with get, set
Public Property AssertUiEnabled As Boolean

Hodnota vlastnosti

truepokud je povolen režim uživatelského rozhraní; v opačném případě . false

Příklady

Následující příklad kódu volá funkci, která volá metodu Fail(String, String) k protokolování chybové zprávy, pokud funkce vyvolá výjimku. AssertUiEnabled Pokud je falsevlastnost , metoda také zapíše chybovou zprávu do konzoly.

// Compute the next binomial coefficient and handle all exceptions.
try
{
    result = CalcBinomial(possibilities, iter);
}
catch(Exception ex)
{
    string failMessage = String.Format("An exception was raised when " +
        "calculating Binomial( {0}, {1} ).", possibilities, iter);
    defaultListener.Fail(failMessage, ex.Message);
    if (!defaultListener.AssertUiEnabled)
    {
        Console.WriteLine(failMessage+ "\n" +ex.Message);
    }
    return;
}
' Compute the next binomial coefficient and handle all exceptions.
Try
    result = CalcBinomial(possibilities, iter)
Catch ex As Exception
    Dim failMessage As String = String.Format( _
            "An exception was raised when " & _
            "calculating Binomial( {0}, {1} ).", _
            possibilities, iter)
    defaultListener.Fail(failmessage, ex.Message)
    If Not defaultListener.AssertUiEnabled Then
        Console.WriteLine(failMessage & vbCrLf & ex.Message)
    End If
    Return
End Try

Platí pro