C#
C#
Replace Deprecated GetExpirationDt
Shows how to replace the deprecated GetExpirationDt method.Chilkat C# Downloads
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));