C# Class ReactiveUI.UnhandledErrorException

Indicates that an object implementing IHandleObservableErrors has errored and nothing is attached to IHandleObservableErrors.ThrownExceptions to handle that error.
Inheritance: System.Exception
Afficher le fichier Open project: reactiveui/ReactiveUI

Méthodes publiques

Méthode Description
UnhandledErrorException ( ) : System

Creates a new instance of UnhandledErrorException.

UnhandledErrorException ( string message ) : System

Creates a new instance of UnhandledErrorException.

UnhandledErrorException ( string message, Exception innerException ) : System

Creates a new instance of UnhandledErrorException.

Method Details

UnhandledErrorException() public méthode

Creates a new instance of UnhandledErrorException.
public UnhandledErrorException ( ) : System
Résultat System

UnhandledErrorException() public méthode

Creates a new instance of UnhandledErrorException.
public UnhandledErrorException ( string message ) : System
message string /// The exception message. ///
Résultat System

UnhandledErrorException() public méthode

Creates a new instance of UnhandledErrorException.
public UnhandledErrorException ( string message, Exception innerException ) : System
message string /// The exception message. ///
innerException System.Exception /// The exception that caused this exception. ///
Résultat System