Is there a way to see what is in the ASP.NET data cache at any given time? For example to render the contents as a hashtable view (key/object id)?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Cache implements IEnumerable; you should be able to loop through it using foreach… the enumerator implements this: