Guardar archivo XML en almacenamiento aislado en WP8

I am working on an application for windows phone 8 that needs to scan several text fields from a picture and use the results. I am using ABBYY cloud OCR and I need the method processFields (link http://ocrsdk.com/documentation/apireference/processFields/?utm_source=stackoverflow.com&utm_medium=comment&utm_campaign=SMM), which its parameter is a path to a XML file with the coordinations of the fields. is anyone familiar with Isolated storage on windows phone 8 and can help me save a XML file to it (or write to it)?

preguntado el 04 de marzo de 14 a las 11:03

1 Respuestas

may this will help you .Here is more abouthow to use isolated storage in wp8

IsolatedStorageFile fileStorage = IsolatedStorageFile.GetUserStoreForApplication();
StreamWriter Writer = new StreamWriter(new IsolatedStorageFileStream("TestFile.xml", FileMode.OpenOrCreate, fileStorage));
Writer.WriteLine(xml_string);
Writer.Close();

respondido 04 mar '14, 11:03

No es la respuesta que estás buscando? Examinar otras preguntas etiquetadas or haz tu propia pregunta.