I want to post XML file to WPF Browser Control locally.
I mean don't directly feed this XML file to WPF Browser Control but read it and post it like byte[] array.
I guess to use NavigateToStream method for it...
I tried this but no success :( Browser doesn't show any data at all.
byte[] attachment = System.IO.File.ReadAllBytes("C:\CustomerData.xml");
MemoryStream mStream = new MemoryStream(attachment);
XMLBrowser.NavigateToStream((Stream)mStream);
Which is the best way to implement it in C#?