C# SDK XML BaseType Mapping
Hello
I am struggling to find how to map a XML parameter of a service to a C# type.
Currently I have that:
public static void PutWorkOrder(
[ThingworxServiceParameter(name = "WorkOrder", description = "XML document", baseType = "XML")]
XmlDocument WorksOrder)
But I am not sure that XmlDocument is the right type for mapping . ( Always null when debugging)
Thanks a lot

