Description of problem: The qpid-winsdk package contains the qpid messaging API documentation for C++ only, but now also C# is supported. There are cases when both (C++ and C#) APIs are not completely aligned down to the details (which is somehow understandable), but customer should know the differences. Currently assigned for 1.3.1, feel free to push to later release. One case for example: // C++ bool durability; Message m; m.setDurable(durability); // C# bool durability; m = new Message (...); m.Durable = durability; A qpid-winsdk user can currently use VStudio Object Browser and see the objects and their interfaces, but it is needed to have either separate API documentation for C# users or at least document which maps the c++ to c# messaging API usage. Version-Release number of selected component (if applicable): qpid-cpp-winsdk-1.3.0.24-*.zip How reproducible: N/A Steps to Reproduce: N/A Actual results: No specific C# API documentation or at least mapping c++ <-> c# which highlights the differences. Expected results: Specific C# API documentation or at least mapping c++ <-> c# which highlights the differences. Additional info: