Hi @fijimf … here’s a few other places to check:
- From docs.solace.com, under APIs, C#: C# / .NET API
- “Structured data types that allow interoperability between various architectures and programming languages”
- Inside the API reference: Solclient.Messaging.SDT SolaceSystems.Solclient.Messaging.SDT Namespace
- From https://solace.com/downloads/ : download the .NET samples package, and check out the
SDTPubSubMsgDep.cs
sample located in the “ex” folder:
IMessage message = args.Message;
ISDTContainer container = SDTUtils.GetContainer(message);
StringBuilder sb = new StringBuilder();
if (container is IMapContainer)
{
IMapContainer map = (IMapContainer)container;
...
Hope that helps!