示例#1
0
 public static DateTime GetTime(this ICefDictionaryValue @this, string index)
 {
     return(GetTime(() => @this.GetValue(index)));
 }
示例#2
0
 public static long GetInt64(this ICefDictionaryValue @this, string index)
 {
     return(GetInt64(() => @this.GetValue(index)));
 }
示例#3
0
 public static bool IsType(this ICefDictionaryValue @this, string index, CefTypes type)
 {
     return(IsType(() => @this.GetValue(index), type));
 }