Compartir a través de


RemoteInvocationException Constructores

Definición

Sobrecargas

RemoteInvocationException(SerializationInfo, StreamingContext)

Source:
RemoteInvocationException.cs
Source:
RemoteInvocationException.cs
Source:
RemoteInvocationException.cs
Source:
RemoteInvocationException.cs
Source:
RemoteInvocationException.cs
Source:
RemoteInvocationException.cs
Source:
RemoteInvocationException.cs

Inicializa una nueva instancia de la clase 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)

Parámetros

info
SerializationInfo

Información de serialización.

context
StreamingContext

Contexto de streaming.

Se aplica a

RemoteInvocationException(String, Int32, Exception)

Inicializa una nueva instancia de la clase 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)

Parámetros

message
String

Mensaje.

errorCode
Int32

Valor del campo error.code en la respuesta.

innerException
Exception

Excepción deserializada producida por el servidor RPC.

Se aplica a

RemoteInvocationException(String, Int32, Object)

Source:
RemoteInvocationException.cs
Source:
RemoteInvocationException.cs
Source:
RemoteInvocationException.cs
Source:
RemoteInvocationException.cs
Source:
RemoteInvocationException.cs
Source:
RemoteInvocationException.cs

Inicializa una nueva instancia de la clase 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)

Parámetros

message
String

Mensaje.

errorCode
Int32

Valor del campo error.code en la respuesta.

errorData
Object

Valor del campo error.data en la respuesta.

Se aplica a

RemoteInvocationException(String, String, String)

Source:
RemoteInvocationException.cs

Inicializa una nueva instancia de la clase 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)

Parámetros

message
String

Mensaje.

remoteStack
String

Pila remota.

remoteCode
String

El código remoto.

Se aplica a

RemoteInvocationException(String, Int32, Object, Object)

Source:
RemoteInvocationException.cs
Source:
RemoteInvocationException.cs
Source:
RemoteInvocationException.cs

Inicializa una nueva instancia de la clase 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)

Parámetros

message
String

Mensaje.

errorCode
Int32

Valor del campo error.code en la respuesta.

errorData
Object

Valor del campo error.data en la respuesta.

deserializedErrorData
Object

Valor del campo error.data en la respuesta, deserializado según GetErrorDetailsDataType(JsonRpcError).

Se aplica a

RemoteInvocationException(String, String, String, JToken)

Source:
RemoteInvocationException.cs

Inicializa una nueva instancia de la clase 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)

Parámetros

message
String

Mensaje.

remoteStack
String

Pila remota.

remoteCode
String

El código remoto.

errorData
Newtonsoft.Json.Linq.JToken

Valor del campo error.data en la respuesta.

Se aplica a