RemoteInvocationException 생성자

정의

오버로드

RemoteInvocationException(SerializationInfo, StreamingContext)

RemoteInvocationException 클래스의 새 인스턴스를 초기화합니다.

RemoteInvocationException(String, Int32, Exception)

RemoteInvocationException 클래스의 새 인스턴스를 초기화합니다.

RemoteInvocationException(String, Int32, Object)

RemoteInvocationException 클래스의 새 인스턴스를 초기화합니다.

RemoteInvocationException(String, String, String)

RemoteInvocationException 클래스의 새 인스턴스를 초기화합니다.

RemoteInvocationException(String, Int32, Object, Object)

RemoteInvocationException 클래스의 새 인스턴스를 초기화합니다.

RemoteInvocationException(String, String, String, JToken)

RemoteInvocationException 클래스의 새 인스턴스를 초기화합니다.

RemoteInvocationException(SerializationInfo, StreamingContext)

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)

매개 변수

info
SerializationInfo

Serialization 정보입니다.

context
StreamingContext

스트리밍 컨텍스트.

적용 대상

RemoteInvocationException(String, Int32, Exception)

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)

매개 변수

message
String

메시지입니다.

errorCode
Int32

응답의 error.code 필드 값입니다.

innerException
Exception

RPC 서버에서 throw하는 역직렬화된 예외입니다.

적용 대상

RemoteInvocationException(String, Int32, Object)

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)

매개 변수

message
String

메시지입니다.

errorCode
Int32

응답의 error.code 필드 값입니다.

errorData
Object

응답의 error.data 필드 값입니다.

적용 대상

RemoteInvocationException(String, String, String)

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)

매개 변수

message
String

메시지입니다.

remoteStack
String

원격 스택입니다.

remoteCode
String

원격 코드입니다.

적용 대상

RemoteInvocationException(String, Int32, Object, Object)

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)

매개 변수

message
String

메시지입니다.

errorCode
Int32

응답의 error.code 필드 값입니다.

errorData
Object

응답의 error.data 필드 값입니다.

deserializedErrorData
Object

응답에서 error.data 필드의 값으로, 에 따라 GetErrorDetailsDataType(JsonRpcError)역직렬화됩니다.

적용 대상

RemoteInvocationException(String, String, String, JToken)

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)

매개 변수

message
String

메시지입니다.

remoteStack
String

원격 스택입니다.

remoteCode
String

원격 코드입니다.

errorData
Newtonsoft.Json.Linq.JToken

응답의 error.data 필드 값입니다.

적용 대상