Skip to content

Class RpcDispatchErrorEventArgs

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

Describes an inbound request dispatch or response-send failure.

public sealed class RpcDispatchErrorEventArgs : EventArgs

objectEventArgsRpcDispatchErrorEventArgs

EventArgs.Empty, object.Equals(object), object.Equals(object, object), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object, object), object.ToString()

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

Section titled “ RpcDispatchErrorEventArgs(string, int, string, string, string?, Exception)”
public RpcDispatchErrorEventArgs(string remoteEndpoint, int messageId, string serviceName, string methodName, string? instanceId, Exception error)

remoteEndpoint string

messageId int

serviceName string

methodName string

instanceId string?

error Exception

The dispatch or response-send failure.

public Exception Error { get; }

Exception

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

public string? InstanceId { get; }

string?

The inbound request message id.

public int MessageId { get; }

int

The requested method name.

public string MethodName { get; }

string

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

public string RemoteEndpoint { get; }

string

The requested service name.

public string ServiceName { get; }

string