Live Chat Icon For mobile
Live Chat Icon

How to write some XML into IsolatedStorage?

Platform: WPF| Category: Serialization
[C#]

Stream mystream = new IsolatedStorageFileStream( storeFileName, FileMode.Create, isoStorage );
if( null != mystream )
{
XmlTextWriter xmlwriter = new XmlTextWriter(mystream, Encoding.UTF8);
      this.WriteDateToWriter( xmlwriter );
      xmlwriter.Flush();
stream.Close();
}

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.