HttpUnhandledException Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe HttpUnhandledException.
Surcharges
HttpUnhandledException() |
Initialise une nouvelle instance de la classe HttpUnhandledException. |
HttpUnhandledException(String) |
Initialise une nouvelle instance de la classe HttpUnhandledException avec les messages d'erreur spécifiés. |
HttpUnhandledException(String, Exception) |
Initialise une nouvelle instance de la classe HttpUnhandledException avec le message d'erreur et l'exception interne spécifiés. |
HttpUnhandledException()
Initialise une nouvelle instance de la classe HttpUnhandledException.
public:
HttpUnhandledException();
public HttpUnhandledException ();
Public Sub New ()
S’applique à
HttpUnhandledException(String)
Initialise une nouvelle instance de la classe HttpUnhandledException avec les messages d'erreur spécifiés.
public:
HttpUnhandledException(System::String ^ message);
public HttpUnhandledException (string message);
new System.Web.HttpUnhandledException : string -> System.Web.HttpUnhandledException
Public Sub New (message As String)
Paramètres
- message
- String
Message affiché au client quand l’exception est levée.
S’applique à
HttpUnhandledException(String, Exception)
Initialise une nouvelle instance de la classe HttpUnhandledException avec le message d'erreur et l'exception interne spécifiés.
public:
HttpUnhandledException(System::String ^ message, Exception ^ innerException);
public HttpUnhandledException (string message, Exception innerException);
new System.Web.HttpUnhandledException : string * Exception -> System.Web.HttpUnhandledException
Public Sub New (message As String, innerException As Exception)
Paramètres
- message
- String
Message affiché au client quand l’exception est levée.
- innerException
- Exception
InnerException, s’il en existe une, qui a levé l’exception actuelle.