Dela via


RemoteMethodNotFoundException Class

Definition

Remote RPC exception that indicates that the requested target method was not found on the server.

public class RemoteMethodNotFoundException : StreamJsonRpc.RemoteRpcException
[System.Serializable]
public class RemoteMethodNotFoundException : StreamJsonRpc.RemoteRpcException
type RemoteMethodNotFoundException = class
    inherit RemoteRpcException
[<System.Serializable>]
type RemoteMethodNotFoundException = class
    inherit RemoteRpcException
Public Class RemoteMethodNotFoundException
Inherits RemoteRpcException
Inheritance
RemoteMethodNotFoundException
Attributes

Remarks

Check the exception message for the reasons why the method was not found. It's possible that there was a method with the matching name, but it was not public, had ref or out params, or its arguments were incompatible with the arguments supplied by the client.

Constructors

RemoteMethodNotFoundException(SerializationInfo, StreamingContext)

Initializes a new instance of the RemoteMethodNotFoundException class.

Properties

DeserializedErrorData

Gets the error.data value in the error response, if one was provided.

ErrorCode

Gets the value of the error.code field in the response.

ErrorData

Gets the error.data value in the error response, if one was provided.

TargetMethod

Gets the name of the target method that was not found.

Methods

GetObjectData(SerializationInfo, StreamingContext)
Obsolete.

When overridden in a derived class, sets the SerializationInfo with information about the exception.

Applies to