Sample code for 30+ languages & platforms
C#

Replace Deprecated GetExpirationDt

Shows how to replace the deprecated GetExpirationDt method.

Chilkat C# Downloads

C#
Chilkat.Cache cache = new Chilkat.Cache();

//  ....
//  ....

string cache_item_key = "xyz";

//  Instead of this:
Chilkat.CkDateTime dt1 = cache.GetExpirationDt(cache_item_key);

//  Do this:
Chilkat.CkDateTime dt2 = new Chilkat.CkDateTime();
dt2.SetFromRfc822(cache.GetExpirationStr(cache_item_key));