Greetings,
I'm trying to read and save to a XML file within a client bin
I've managed to find out how to read a xml file in the clientbin.
Now I want to save to it aswell, when saving, the file already exists in the clientbin.
Uri url = new Uri("myXml.xml", UriKind.Relative);
WebClient client = new WebClient();
#region DownloadStringCompleted
client.DownloadStringCompleted += (s, ea) =>
{
//bla
}
If this is not possible due to limitation then please provide me with a way to copy the file to local machine and be able to change it there.
Many thanks in advance