How to set StringProperties in an outgoing messages? #502
Answered
by
Havret
RamanShuliak-Khazatech
asked this question in
Q&A
-
Here is my service, that create tls1.2 encrypted connection with Artemis and send messages to it:
Is there any way I can specify in the outgoing message a key-value type StringProperties? |
Beta Was this translation helpful? Give feedback.
Answered by
Havret
Aug 12, 2024
Replies: 1 comment
-
Yes, you're doing it like that: var amqMessage = new Message(message)
{
ApplicationProperties =
{
["key"] = "value"
}
}; |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
RamanShuliak-Khazatech
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, you're doing it like that: