I have an xml which is string. This is part of it.
<GetModuleInfoResult xmlns =\"http://schemas.datacontract.org/2004/07/GMS.Integration.Service.Contracts.Results\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">
<Code>0</Code>
<Message i:nil=\"true\"/>
<Parameters xmlns:a=\"http://schemas.datacontract.org/2004/07/GMS.Integration.Service.Contracts.Entities\">
<a:Parameter>
<a:Key>width</a:Key>
<a:Value>1068</a:Value>
</a:Parameter>
<a:Parameter>
<a:Key>height</a:Key>
<a:Value>600</a:Value>
</a:Parameter>
I want to get all the parameter nodes and read their 'key' and 'Value' nodes.
How can I achieve that?