Windows phone 8.1 save data with javascript -


is there way save settings data javascript in windows phone 8.1 application. in c# applicationdata.current.localsettings. possible in javascript?

thank you

the same api available html/javascript apps. see here more information.

var localsettings = applicationdata.localsettings; var localfolder = applicationdata.localfolder; localsettings.values["examplesetting"] = "hello windows"; 

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -