Exemple #1
0
 public static long GetInt64(this ICefListValue @this, int index)
 {
     return(GetInt64(() => @this.GetValue(index)));
 }
Exemple #2
0
 public static DateTime GetTime(this ICefListValue @this, int index)
 {
     return(GetTime(() => @this.GetValue(index)));
 }
Exemple #3
0
 public static void SetTime(this ICefListValue @this, int index, DateTime value)
 {
     SetTime(_ => @this.SetBinary(index, _), value);
 }
Exemple #4
0
 public static bool IsType(this ICefListValue @this, int index, CefTypes type)
 {
     return(IsType(() => @this.GetValue(index), type));
 }
Exemple #5
0
 public static void SetInt64(this ICefListValue @this, int index, long value)
 {
     SetInt64(_ => @this.SetBinary(index, _), value);
 }
Exemple #6
0
 public void SetList(ICefListValue value)
 {
     Wrapped.SetList(value.Unwrap <CefListValue>());
 }