Ejemplo n.º 1
0
 /// <inheritdoc/>
 public override string ToString()
 {
     return(MessagePackFormatter.ToString(new
     {
         id = this.Id,
     }));
 }
Ejemplo n.º 2
0
 /// <inheritdoc/>
 public override string ToString()
 {
     return(MessagePackFormatter.ToString(new
     {
         id = this.Id,
         error = new
         {
             code = this.Error?.Code,
             message = this.Error?.Message,
         },
     }));
 }