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
remoteEndpointstringmessageIdintserviceNamestringmethodNamestringinstanceIdstringerrorException
Properties
Error
The dispatch or response-send failure.
public Exception Error { get; }
Property Value
InstanceId
The requested service instance id, when the request targets an instance.
public string? InstanceId { get; }
Property Value
MessageId
The inbound request message id.
public int MessageId { get; }
Property Value
MethodName
The requested method name.
public string MethodName { get; }
Property Value
RemoteEndpoint
The remote endpoint string of the channel that sent the request.
public string RemoteEndpoint { get; }
Property Value
ServiceName
The requested service name.
public string ServiceName { get; }