Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix serializing/deserializing the message properties. Use the existin…
…g PrimitiveMap marshal/unmarshal functions. Add additional exception handling in the MessageConsumer to pass the BadConsumerTest unit test. Fixes [AMQNET-491]. (See https://issues.apache.org/jira/browse/AMQNET-491)
- Loading branch information
Showing
4 changed files
with
43 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -84,6 +84,11 @@ public IPrimitiveMap Properties | ||
get { return propertiesMap; } | ||
} | ||
|
||
internal PrimitiveMap PropertiesMap | ||
{ | ||
get { return propertiesMap; } | ||
set { propertiesMap = value; } | ||
} | ||
|
||
// NMS headers | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters