Class RpcDispatchErrorEventArgs
Namespace: DotBoxD.Services.Diagnostics
Assembly: DotBoxD.Services.dll
Describes an inbound request dispatch or response-send failure.
public sealed class RpcDispatchErrorEventArgs : EventArgsInheritance
Section titled “Inheritance”object ← EventArgs ← RpcDispatchErrorEventArgs
Inherited Members
Section titled “Inherited Members”EventArgs.Empty, object.Equals(object), object.Equals(object, object), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object, object), object.ToString()
Constructors
Section titled “Constructors”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)Parameters
Section titled “Parameters”remoteEndpoint string
messageId int
serviceName string
methodName string
instanceId string?
error Exception
Properties
Section titled “Properties”The dispatch or response-send failure.
public Exception Error { get; }Property Value
Section titled “Property Value”InstanceId
Section titled “ InstanceId”The requested service instance id, when the request targets an instance.
public string? InstanceId { get; }Property Value
Section titled “Property Value”MessageId
Section titled “ MessageId”The inbound request message id.
public int MessageId { get; }Property Value
Section titled “Property Value”MethodName
Section titled “ MethodName”The requested method name.
public string MethodName { get; }Property Value
Section titled “Property Value”RemoteEndpoint
Section titled “ RemoteEndpoint”The remote endpoint string of the channel that sent the request.
public string RemoteEndpoint { get; }Property Value
Section titled “Property Value”ServiceName
Section titled “ ServiceName”The requested service name.
public string ServiceName { get; }