Subject: Complex Iq class
Hi,
I need to send IQ packet to component that query more complex class than weather class in tutorial.
For example I want send PersonList back from component to client.
How should I build it like weather class?
I need to send IQ packet to component that query more complex class than weather class in tutorial.
For example I want send PersonList back from component to client.
How should I build it like weather class?
- class Person
- {
- public string name;
- public string city;
- }
- class PersonList
- {
- List<Person> persons;
- public PersonList()
- {
- }
- }
Obi
Show profile
Link to this post