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 7dd065e commit 9382889Copy full SHA for 9382889
CefSharp/Internals/BrowserProcessServiceHost.cs
@@ -75,6 +75,9 @@ public static CustomBinding CreateBinding()
75
binding.SendTimeout = TimeSpan.MaxValue;
76
binding.OpenTimeout = TimeSpan.MaxValue;
77
binding.CloseTimeout = TimeSpan.MaxValue;
78
+ binding.ReaderQuotas.MaxStringContentLength = int.MaxValue;
79
+ binding.ReaderQuotas.MaxArrayLength = int.MaxValue;
80
+ binding.ReaderQuotas.MaxDepth = int.MaxValue;
81
82
// Ensure binding connection stays open indefinitely until closed
83
var customBinding = new CustomBinding(binding);
0 commit comments