Skip to content

Commit 06e2a1a

Browse files
committed
Slightly modified fix for #622 based on #626
1 parent bf28d21 commit 06e2a1a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CefSharp.BrowserSubprocess/CefRenderProcess.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
namespace CefSharp.BrowserSubprocess
1010
{
11+
[CallbackBehavior(ConcurrencyMode = ConcurrencyMode.Multiple)]
1112
public class CefRenderProcess : CefSubProcess, IRenderProcess
1213
{
1314
private int? parentBrowserId;

CefSharp/Internals/BrowserProcessService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace CefSharp.Internals
88
{
9-
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession)]
9+
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession, ConcurrencyMode=ConcurrencyMode.Multiple)]
1010
public class BrowserProcessService : IBrowserProcess
1111
{
1212
private readonly JavascriptObjectRepository javascriptObjectRepository;

0 commit comments

Comments
 (0)