Click here to Skip to main content
15,887,676 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
how to create, edit and delete .sol (local shared object or flash coockies) file using c#. give me brief idea about it. or any alternative solutions for this.

Thanks in advance
Posted
Updated 25-Apr-22 18:25pm
v3
Comments
Kuthuparakkal 12-Sep-12 0:43am    
need more info, what are you tryin to do ? Whare are you stuck ? etc
dravidaveera 20-Sep-12 1:54am    
I want create a sharedObject(Flash cookies) using c# with EventListener.

1 solution

Creating SharedObjects
----------------------------------------------------------------

SharedObjectService sos = new SharedObjectService();
IScope iScope;
iScope.setPath(path);// Specify the destination path
iScope.setName("hhd_status");
iScope.setAttribute("result", "connected");

sos.createSharedObject(iScope, "hhd_status", true);

Reading SharedObjects
----------------------------------------------------------------

SharedObjectService sos = new SharedObjectService();
IScope iScope;
sos.getSharedObject(iScope, "hhd_status", true);


Thats All.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900