C# Example Zoho Support parse Search xml when using API

C# Example Zoho Support parse Search xml when using API

I was wondering if you had an example of parsing the response from a zoho support search using the API.

Here is my current code
//Process Xml REsponse
            XmlDocument xmlDoc = new XmlDocument();
            xmlDoc.LoadXml(responseFromServer);
            XmlNodeList nodes = xmlDoc.DocumentElement.SelectNodes("row");
            foreach (XmlNode node in nodes)
            {
                ZohoTicketSearch curTicket = new ZohoTicketSearch();
                curTicket.billable = node.SelectSingleNode("Billable").InnerText;
                curTicket.caseid = node.SelectSingleNode("CASEID").InnerText;
                curTicket.caseowner = node.SelectSingleNode("Case Owner").InnerText;
                curTicket.hasComments = node.SelectSingleNode("IsCommented").InnerText;
                curTicket.priority = node.SelectSingleNode("Priority").InnerText;
                curTicket.status = node.SelectSingleNode("Status").InnerText;
                curTicket.subject = node.SelectSingleNode("Subject").InnerText;
                curTicket.ticketowner = node.SelectSingleNode("Ticket Owener").InnerText;
                curTicket.uri = node.SelectSingleNode("URI").InnerText;
                curTickets.Add(curTicket);
            }
            return PartialView("_zohoTickets",curTickets);
Here is part of the xml I am receiving
"<?xml version=\"1.0\" encoding=\"UTF-8\" ?>
<response uri=\"/api/xml/requests/getrecordsbysearch\">
<result>
<Cases>
<row no=\"1\">
<fl val=\"CASEID\">.......</fl>
<fl val=\"URI\">
<![CDATA[/support/......./ShowHomePage.do#Cases/dv/...........5]]>
</fl>
<fl val=\"IsCommented\">false</fl>
<fl val=\"Subject\">
<![CDATA[TRID - allow real .......]]>
</fl>
<fl val=\"Status\">
<![CDATA[Need QC]]>
</fl>
<fl val=\"Case Owner\">
<![CDATA[Fname Lname]]>
</fl>
<fl val=\"Ticket Owner\">
<![CDATA[Fname Lname]]>
</fl>
<fl val=\"SMOWNERID\">....</fl>
<fl val=\"Priority\">
<![CDATA[Normal]]>
</fl>
<fl val=\"Billable\">
<![CDATA[false]]>
</fl>
</row>
<row no=\"2\">
<fl val=\"CASEID\">....</fl>
<fl val=\"URI\">
<![CDATA[/....../ShowHomePage.do#Cases/dv/......a]]>
</fl>
<fl val=\"IsCommented\">true</fl>
<fl val=\"Subject\">
<![CDATA[TRID - Summary of Transaction changes]]>
</fl>
<fl val=\"Status\">
<![CDATA[Submitted to ... for Review]]>
</fl>
<fl val=\"Case Owner\">
<![CDATA[Fname Lname]]>
</fl>
<fl val=\"Ticket Owner\">
<![CDATA[Fname Lname]]>
</fl>
<fl val=\"SMOWNERID\">........</fl>
<fl val=\"Priority\">
<![CDATA[Normal]]>
</fl>
<fl val=\"Billable\">
<![CDATA[false]]>
</fl>
</row>
<row no=\"3\">


    Access your files securely from anywhere

        Zoho Developer Community




                                  Zoho Desk Resources

                                  • Desk Community Learning Series


                                  • Digest


                                  • Functions


                                  • Meetups


                                  • Kbase


                                  • Resources


                                  • Glossary


                                  • Desk Marketplace


                                  • MVP Corner


                                  • Word of the Day



                                      Zoho Marketing Automation


                                              Manage your brands on social media



                                                    Zoho TeamInbox Resources

                                                      Zoho DataPrep Resources



                                                        Zoho CRM Plus Resources

                                                          Zoho Books Resources


                                                            Zoho Subscriptions Resources

                                                              Zoho Projects Resources


                                                                Zoho Sprints Resources


                                                                  Qntrl Resources


                                                                    Zoho Creator Resources



                                                                        Zoho Campaigns Resources


                                                                          Zoho CRM Resources

                                                                          • CRM Community Learning Series

                                                                            CRM Community Learning Series


                                                                          • Kaizen

                                                                            Kaizen

                                                                          • Functions

                                                                            Functions

                                                                          • Meetups

                                                                            Meetups

                                                                          • Kbase

                                                                            Kbase

                                                                          • Resources

                                                                            Resources

                                                                          • Digest

                                                                            Digest

                                                                          • CRM Marketplace

                                                                            CRM Marketplace

                                                                          • MVP Corner

                                                                            MVP Corner





                                                                              Design. Discuss. Deliver.

                                                                              Create visually engaging stories with Zoho Show.

                                                                              Get Started Now