Lire en anglais

Partager via


ServiceBusException Constructeurs

Définition

Surcharges

ServiceBusException(Boolean)

Retourne une nouvelle exception ServiceBusException

ServiceBusException(Boolean, Exception)

Retourne une nouvelle exception ServiceBusException

ServiceBusException(Boolean, String)

Retourne une nouvelle exception ServiceBusException

ServiceBusException(Boolean, String, Exception)

Retourne une nouvelle exception ServiceBusException

ServiceBusException(Boolean)

Source:
ServiceBusException.cs

Retourne une nouvelle exception ServiceBusException

public ServiceBusException (bool isTransient);
new Microsoft.Azure.ServiceBus.ServiceBusException : bool -> Microsoft.Azure.ServiceBus.ServiceBusException
Public Sub New (isTransient As Boolean)

Paramètres

isTransient
Boolean

Spécifie si l’exception est temporaire ou non.

S’applique à

ServiceBusException(Boolean, Exception)

Source:
ServiceBusException.cs

Retourne une nouvelle exception ServiceBusException

public ServiceBusException (bool isTransient, Exception innerException);
new Microsoft.Azure.ServiceBus.ServiceBusException : bool * Exception -> Microsoft.Azure.ServiceBus.ServiceBusException
Public Sub New (isTransient As Boolean, innerException As Exception)

Paramètres

isTransient
Boolean

Spécifie si l’exception est temporaire ou non.

innerException
Exception

S’applique à

ServiceBusException(Boolean, String)

Source:
ServiceBusException.cs

Retourne une nouvelle exception ServiceBusException

public ServiceBusException (bool isTransient, string message);
new Microsoft.Azure.ServiceBus.ServiceBusException : bool * string -> Microsoft.Azure.ServiceBus.ServiceBusException
Public Sub New (isTransient As Boolean, message As String)

Paramètres

isTransient
Boolean

Spécifie si l’exception est temporaire ou non.

message
String

Exception de message détaillé.

S’applique à

ServiceBusException(Boolean, String, Exception)

Source:
ServiceBusException.cs

Retourne une nouvelle exception ServiceBusException

public ServiceBusException (bool isTransient, string message, Exception innerException);
new Microsoft.Azure.ServiceBus.ServiceBusException : bool * string * Exception -> Microsoft.Azure.ServiceBus.ServiceBusException
Public Sub New (isTransient As Boolean, message As String, innerException As Exception)

Paramètres

isTransient
Boolean

Spécifie si l’exception est temporaire ou non.

message
String

Exception de message détaillé.

innerException
Exception

S’applique à