Question:You want to cache an object but have it automatically expire in 10 minutes. Howcan you do this? [Textbook-70-515]
A Directly define the Cache item.
B Call Cache.Get.
C Call Cache.Insert.
D Cast DateTime.Now.AddMinutes(10) to the Cache type.
+ AnswerC
+ Report