Link to home
Start Free TrialLog in
Avatar of Paracom_Inc
Paracom_Inc

asked on

Enumerate IE history in C#

I need to enumerate the urls recorded in the IE history. I can navigate to this data in Windows Explorer, (C:\Documents and Settings\userName\Local Settings\History), but I don't know how to read it from C#. Is there a way to do this?
ASKER CERTIFIED SOLUTION
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Example usage:

Dictionary<string, IeHistoryEntry> historyList = IeHistory.GetURLCache();