Information.IsError(Object) Metodo

Definizione

Restituisce un valore Boolean che indica se un'espressione è un tipo di eccezione.

public:
 static bool IsError(System::Object ^ Expression);
public static bool IsError (object? Expression);
public static bool IsError (object Expression);
static member IsError : obj -> bool
Public Function IsError (Expression As Object) As Boolean

Parametri

Expression
Object

Obbligatorio. Espressione Object.

Restituisce

Restituisce un valore Boolean che indica se un'espressione è un tipo di eccezione.

Esempio

Nell'esempio seguente viene utilizzata la IsError funzione per verificare se un'espressione rappresenta un'eccezione di sistema.

Sub demonstrateIsError(ByVal firstArg As Integer)
    Dim returnVal As New Object
    Dim badArg As String = "Bad argument value"
    Dim errorCheck As Boolean
    If firstArg > 10000 Then
        returnVal = New System.ArgumentOutOfRangeException(badArg)
    End If
    errorCheck = IsError(returnVal)
End Sub

Commenti

IsError restituisce True se l'espressione rappresenta una Object variabile che deriva dalla Exception classe nello spazio dei System nomi .

Un'eccezione che deriva da System.Exception può essere intercettata con le Try...Catch...Finally istruzioni .

Si applica a

Vedi anche