Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/kubernetes/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
.net 如何使用隔离存储和IE保护模式?_.net_Internet Explorer_Add In_Isolatedstorage_Protected Mode - Fatal编程技术网

.net 如何使用隔离存储和IE保护模式?

.net 如何使用隔离存储和IE保护模式?,.net,internet-explorer,add-in,isolatedstorage,protected-mode,.net,Internet Explorer,Add In,Isolatedstorage,Protected Mode,我有一个Internet Explorer插件,需要在“低权限”/“受保护”模式下使用IsolatedStorage(.NET/C#/3.5),因此我计划写入%USERPROFILE%\AppData\LocalLow 如何选择该路径?使用IsolatedStorage的主要原因是不知道存储的物理位置。它是对文件系统中允许应用程序编写的任何位置的抽象 为了获得一个IsolategStorage实例,您应该使用IsolatedStorage.getMachinestoreforeplication

我有一个Internet Explorer插件,需要在“低权限”/“受保护”模式下使用IsolatedStorage(.NET/C#/3.5),因此我计划写入%USERPROFILE%\AppData\LocalLow


如何选择该路径?

使用
IsolatedStorage
的主要原因是不知道存储的物理位置。它是对文件系统中允许应用程序编写的任何位置的抽象


为了获得一个
IsolategStorage
实例,您应该使用
IsolatedStorage.getMachinestoreforeplication

调用getMachinestoreforeplication是否将文件存储在LocalLow中?另外,若我调用该方法,它将返回一个异常:“无法确定调用方的应用程序标识”。谢谢