You can go back and forth from XMLDocuments to Streams by:
MemoryStream streamName = new...();
streamName.Write( [ innerXML as byte array ], 0, [size of array]);
XMLDocument document = new ...();
document.Load(streamName);
Now you have a xmldocument.
No comments:
Post a Comment