本文介绍了如何使用c#读取.sol文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用C#解析Flash本地共享对象.sol文件(Flash Cookie)中的内容?我在这里引用了Weborb的SharedObjectService: []:
How to parse content from Flash Local Shared Object .sol-files ("Flash cookies") using C#? I have tried Weborb's SharedObjectService as referenced here: how to create, edit and delete .sol file using c#.[^]:
SharedObjectService sos = new SharedObjectService();
IScope iScope;
sos.getSharedObject(iScope, "hhd_status", true);
由于iScope未分配且我不知道如何检索iScope,因此该解决方案无效。如何使用Weborb或其他解决方案做到这一点?
This solution is not working since iScope is unassigned and I don't know how to retrieve iScope. How to do this right with Weborb - or other solutions?
推荐答案
这篇关于如何使用c#读取.sol文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!