HubException 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.
Surcharges
HubException() |
Initialise une nouvelle instance de la classe HubException. |
HubException(String) |
Initialise une nouvelle instance de la classe HubException avec un message d'erreur spécifié. |
HubException(SerializationInfo, StreamingContext) |
Obsolète.
Initialise une nouvelle instance de la classe HubException. |
HubException(String, Exception) |
Initialise une nouvelle instance de la classe HubException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception. |
HubException()
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
Initialise une nouvelle instance de la classe HubException.
public:
HubException();
public HubException ();
Public Sub New ()
S’applique à
HubException(String)
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
Initialise une nouvelle instance de la classe HubException avec un message d'erreur spécifié.
public:
HubException(System::String ^ message);
public HubException (string message);
public HubException (string? message);
new Microsoft.AspNetCore.SignalR.HubException : string -> Microsoft.AspNetCore.SignalR.HubException
Public Sub New (message As String)
Paramètres
- message
- String
Message d'erreur qui explique la raison de l'exception.
S’applique à
HubException(SerializationInfo, StreamingContext)
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
Attention
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Initialise une nouvelle instance de la classe HubException.
public:
HubException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
public HubException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public HubException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.AspNetCore.SignalR.HubException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.AspNetCore.SignalR.HubException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new Microsoft.AspNetCore.SignalR.HubException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.AspNetCore.SignalR.HubException
Public Sub New (info As SerializationInfo, context As StreamingContext)
Paramètres
- info
- SerializationInfo
SerializationInfo qui contient les données d'objet sérialisées concernant l'exception levée.
- context
- StreamingContext
StreamingContext qui contient des informations contextuelles relatives à la source ou à la destination.
- Attributs
Exceptions
Le paramètre info
a la valeur null
.
Le nom de la classe est null
ou HResult est zéro (0).
S’applique à
HubException(String, Exception)
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
- Source:
- HubException.cs
Initialise une nouvelle instance de la classe HubException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception.
public:
HubException(System::String ^ message, Exception ^ innerException);
public HubException (string message, Exception innerException);
public HubException (string? message, Exception? innerException);
new Microsoft.AspNetCore.SignalR.HubException : string * Exception -> Microsoft.AspNetCore.SignalR.HubException
Public Sub New (message As String, innerException As Exception)
Paramètres
- message
- String
Message d'erreur qui explique la raison de l'exception.
- innerException
- Exception
L'exception qui est la cause de l'exception actuelle ou null
si aucune exception interne n'est spécifiée.