Sample code for 30+ languages & platforms
AutoIt

Replace Deprecated GetExpirationDt

Shows how to replace the deprecated GetExpirationDt method.

Chilkat AutoIt Downloads

AutoIt
$oCache = ObjCreate("Chilkat.Cache")

; ....
; ....

Local $sCache_item_key = "xyz"

; Instead of this:
Local $oDt1 = $oCache.GetExpirationDt($sCache_item_key)

; Do this:
$oDt2 = ObjCreate("Chilkat.CkDateTime")
$oDt2.SetFromRfc822($oCache.GetExpirationStr($sCache_item_key))