Пример #1
0
 public static long GetInt64(this ICefDictionaryValue @this, string index)
 {
     return(GetInt64(() => @this.GetValue(index)));
 }
 public void SetDictionary(string key, ICefDictionaryValue value)
 {
     Wrapped.SetDictionary(key, value.Unwrap <CefDictionaryValue>());
 }
Пример #3
0
 public static DateTime GetTime(this ICefDictionaryValue @this, string index)
 {
     return(GetTime(() => @this.GetValue(index)));
 }
Пример #4
0
 public static void SetTime(this ICefDictionaryValue @this, string index, DateTime value)
 {
     SetTime(_ => @this.SetBinary(index, _), value);
 }
Пример #5
0
 public static bool IsType(this ICefDictionaryValue @this, string index, CefTypes type)
 {
     return(IsType(() => @this.GetValue(index), type));
 }
Пример #6
0
 public static void SetInt64(this ICefDictionaryValue @this, string index, long value)
 {
     SetInt64(_ => @this.SetBinary(index, _), value);
 }
Пример #7
0
 public void SetDictionary(ICefDictionaryValue value)
 {
     Wrapped.SetDictionary(value.Unwrap <CefDictionaryValue>());
 }