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.
2 parents 2344e8b + 1b38890 commit e28a31eCopy full SHA for e28a31e
CefSharp/Internals/BrowserProcessServiceHost.cs
@@ -104,6 +104,11 @@ public static CustomBinding CreateBinding()
104
binding.SendTimeout = TimeSpan.MaxValue;
105
binding.OpenTimeout = TimeSpan.MaxValue;
106
binding.CloseTimeout = TimeSpan.MaxValue;
107
+ binding.ReaderQuotas.MaxStringContentLength = int.MaxValue;
108
+ binding.ReaderQuotas.MaxArrayLength = int.MaxValue;
109
+ binding.ReaderQuotas.MaxDepth = int.MaxValue;
110
+ binding.ReaderQuotas.MaxNameTableCharCount = int.MaxValue;
111
+ binding.ReaderQuotas.MaxBytesPerRead = int.MaxValue;
112
113
// Ensure binding connection stays open indefinitely until closed
114
var customBinding = new CustomBinding(binding);
0 commit comments