Skip to content

ProtocolError

Machine-readable error descriptor.

public sealed record ProtocolError : IEquatable<ProtocolError>
  • IEquatable<ProtocolError>

Machine-readable error descriptor.

public ProtocolError(string Code, string Message)
  • Code (string): Error code.
  • Message (string): Error message.

Error code.

public string Code { get; init; }

string

Error message.

public string Message { get; init; }

string