We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d74abda commit f21fcbfCopy full SHA for f21fcbf
CefSharp.Core/Internals/TypeConversion.h
@@ -149,6 +149,17 @@ namespace CefSharp
149
{
150
cefValue->SetDouble(Convert::ToDouble(value));
151
}
152
+ else if (type == List<Object^>::typeid)
153
+ {
154
+ auto list = safe_cast<List<Object^>^>(value);
155
+ auto cefList = CefListValue::Create();
156
+ for (int i = 0; i < list->Count; i++)
157
158
+ auto value = list[i];
159
+ SerializeV8Object(cefList, i, value);
160
+ }
161
+ cefValue->SetList(cefList);
162
163
else if (type == Dictionary<String^, Object^>::typeid)
164
165
auto dictionary = safe_cast<Dictionary<String^, Object^>^>(value);
0 commit comments