Click here to Skip to main content
15,888,313 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I am making a project named 'distributed learning system'.
In this project, one of the modules is Session recording. so i need code suitable for this purpose in c#.
Posted

1 solution

Okay, so you require the ability to record a session. Well, the big question here is what constitutes a session and what granularity do you want to apply? By granularity, I mean do you only want to be capturing high level actions? Do you want lower level actions? As a hint - if you are recording a session, then you really need to consider using a Command based design pattern with you storing the actions to recreate the session as a series of commands that you just iterate over and execute.

This is fundamental behaviour for your application design, so you do not want to leave the choice until a later stage.
 
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