Table of Contents

Class RpcDispatchErrorEventArgs

Namespace
DotBoxD.Services.Diagnostics
Assembly
DotBoxD.Services.dll

Describes an inbound request dispatch or response-send failure.

public sealed class RpcDispatchErrorEventArgs : EventArgs
Inheritance
RpcDispatchErrorEventArgs
Inherited Members

Constructors

RpcDispatchErrorEventArgs(string, int, string, string, string?, Exception)

public RpcDispatchErrorEventArgs(string remoteEndpoint, int messageId, string serviceName, string methodName, string? instanceId, Exception error)

Parameters

remoteEndpoint string
messageId int
serviceName string
methodName string
instanceId string
error Exception

Properties

Error

The dispatch or response-send failure.

public Exception Error { get; }

Property Value

Exception

InstanceId

The requested service instance id, when the request targets an instance.

public string? InstanceId { get; }

Property Value

string

MessageId

The inbound request message id.

public int MessageId { get; }

Property Value

int

MethodName

The requested method name.

public string MethodName { get; }

Property Value

string

RemoteEndpoint

The remote endpoint string of the channel that sent the request.

public string RemoteEndpoint { get; }

Property Value

string

ServiceName

The requested service name.

public string ServiceName { get; }

Property Value

string