static public decimal XMLCacheGetDec(object handle, string key, decimal defaultvalue = 0) { return(Static.ToDecimal(XMLCacheGet(handle, key, defaultvalue))); }
static public double XMLCacheGetDbl(object handle, string key, double defaultvalue = 0.0D) { return(Static.ToDouble(XMLCacheGet(handle, key, defaultvalue))); }
static public int XMLCacheGetInt(object handle, string key, int defaultvalue = 0) { return(Static.ToInt(XMLCacheGet(handle, key, defaultvalue))); }
static public long XMLCacheGetLong(object handle, string key, long defaultvalue = 0L) { return(Static.ToLong(XMLCacheGet(handle, key, defaultvalue))); }
static public string XMLCacheGetStr(object handle, string key, string defaultvalue = "") { return(Static.ToStr(XMLCacheGet(handle, key, defaultvalue))); }