Partager via


RemoteInvocationException Constructeurs

Définition

Surcharges

RemoteInvocationException(SerializationInfo, StreamingContext)

Initialise une nouvelle instance de la classe RemoteInvocationException.

RemoteInvocationException(String, Int32, Exception)

Initialise une nouvelle instance de la classe RemoteInvocationException.

RemoteInvocationException(String, Int32, Object)

Initialise une nouvelle instance de la classe RemoteInvocationException.

RemoteInvocationException(String, String, String)

Initialise une nouvelle instance de la classe RemoteInvocationException.

RemoteInvocationException(String, Int32, Object, Object)

Initialise une nouvelle instance de la classe RemoteInvocationException.

RemoteInvocationException(String, String, String, JToken)

Initialise une nouvelle instance de la classe RemoteInvocationException.

RemoteInvocationException(SerializationInfo, StreamingContext)

Initialise une nouvelle instance de la classe RemoteInvocationException.

protected RemoteInvocationException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new StreamJsonRpc.RemoteInvocationException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> StreamJsonRpc.RemoteInvocationException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Paramètres

info
SerializationInfo

Informations de sérialisation.

context
StreamingContext

Contexte de diffusion en continu.

S’applique à

RemoteInvocationException(String, Int32, Exception)

Initialise une nouvelle instance de la classe RemoteInvocationException.

public RemoteInvocationException (string? message, int errorCode, Exception innerException);
new StreamJsonRpc.RemoteInvocationException : string * int * Exception -> StreamJsonRpc.RemoteInvocationException
Public Sub New (message As String, errorCode As Integer, innerException As Exception)

Paramètres

message
String

Message.

errorCode
Int32

Valeur du champ error.code dans la réponse.

innerException
Exception

Exception désérialisée levée par le serveur RPC.

S’applique à

RemoteInvocationException(String, Int32, Object)

Initialise une nouvelle instance de la classe RemoteInvocationException.

public RemoteInvocationException (string message, int errorCode, object errorData);
public RemoteInvocationException (string? message, int errorCode, object? errorData);
new StreamJsonRpc.RemoteInvocationException : string * int * obj -> StreamJsonRpc.RemoteInvocationException
Public Sub New (message As String, errorCode As Integer, errorData As Object)

Paramètres

message
String

Message.

errorCode
Int32

Valeur du champ error.code dans la réponse.

errorData
Object

Valeur du champ error.data dans la réponse.

S’applique à

RemoteInvocationException(String, String, String)

Initialise une nouvelle instance de la classe RemoteInvocationException.

public RemoteInvocationException (string message, string remoteStack, string remoteCode);
new StreamJsonRpc.RemoteInvocationException : string * string * string -> StreamJsonRpc.RemoteInvocationException
Public Sub New (message As String, remoteStack As String, remoteCode As String)

Paramètres

message
String

Message.

remoteStack
String

Pile distante.

remoteCode
String

Code distant.

S’applique à

RemoteInvocationException(String, Int32, Object, Object)

Initialise une nouvelle instance de la classe RemoteInvocationException.

public RemoteInvocationException (string? message, int errorCode, object? errorData, object? deserializedErrorData);
new StreamJsonRpc.RemoteInvocationException : string * int * obj * obj -> StreamJsonRpc.RemoteInvocationException
Public Sub New (message As String, errorCode As Integer, errorData As Object, deserializedErrorData As Object)

Paramètres

message
String

Message.

errorCode
Int32

Valeur du champ error.code dans la réponse.

errorData
Object

Valeur du champ error.data dans la réponse.

deserializedErrorData
Object

Valeur du champ error.data dans la réponse, désérialisée en fonction de GetErrorDetailsDataType(JsonRpcError).

S’applique à

RemoteInvocationException(String, String, String, JToken)

Initialise une nouvelle instance de la classe RemoteInvocationException.

public RemoteInvocationException (string message, string remoteStack, string remoteCode, Newtonsoft.Json.Linq.JToken errorData);
new StreamJsonRpc.RemoteInvocationException : string * string * string * Newtonsoft.Json.Linq.JToken -> StreamJsonRpc.RemoteInvocationException
Public Sub New (message As String, remoteStack As String, remoteCode As String, errorData As JToken)

Paramètres

message
String

Message.

remoteStack
String

Pile distante.

remoteCode
String

Code distant.

errorData
Newtonsoft.Json.Linq.JToken

Valeur du champ error.data dans la réponse.

S’applique à