You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a Byte-array in the amqp-header if I use the code: result.BasicProperties.Headers.TryGetValue("key", out object value);
the value has the type: BinaryTableValue. But this type is internal. So how can I now get the byte[] content?
The text was updated successfully, but these errors were encountered:
michaelklishin
changed the title
AMQP-Header with Byte[] as content
Message header of type byte[]
Jun 24, 2020
This is not intentional. We should make this value public and move it to the public part of the API, RabbitMQ.Client. Feel free to submit a PR that does it. In the meantime, you can use string values instead.
We have a Byte-array in the amqp-header if I use the code:
result.BasicProperties.Headers.TryGetValue("key", out object value);
the value has the type:
BinaryTableValue
. But this type is internal. So how can I now get the byte[] content?The text was updated successfully, but these errors were encountered: