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 6e659e2 commit d8a81e9Copy full SHA for d8a81e9
CefSharp/Internals/BrowserProcessServiceHost.cs
@@ -78,6 +78,8 @@ public static CustomBinding CreateBinding()
78
binding.ReaderQuotas.MaxStringContentLength = int.MaxValue;
79
binding.ReaderQuotas.MaxArrayLength = int.MaxValue;
80
binding.ReaderQuotas.MaxDepth = int.MaxValue;
81
+ binding.ReaderQuotas.MaxNameTableCharCount = int.MaxValue;
82
+ binding.ReaderQuotas.MaxBytesPerRead = int.MaxValue;
83
84
// Ensure binding connection stays open indefinitely until closed
85
var customBinding = new CustomBinding(binding);
0 commit comments