You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While WebViews from different app processes normally don't share the same WebView browser process instance, app processes from the same product suite may share the same webview browser process
3
3
instance by specifying the same user data folder when creating WebView2Environment object.
4
-
The `AreMultipleHostProcessesAllowed` property is for the developer to express the sharing intent, so that we could provide optimized security and performance according expected usage.
4
+
The `ExclusiveUserDataFolderAccess` property is for the developer to express the sharing intent, so that we could provide optimized security and performance according expected usage.
5
5
6
6
# Description
7
-
The `AreMultipleHostProcessesAllowed` property indicates whether other processes can create WebView2 sharing the same WebView browser process instance by using WebView2Environment created with the same user data folder.
8
-
Default is TRUE.
7
+
The `ExclusiveUserDataFolderAccess` property indicates whether other processes can create WebView2 sharing the same WebView browser process instance by using WebView2Environment created with the same user data folder.
8
+
Default is FALSE.
9
9
10
10
# Examples
11
11
## Win32 C++
12
12
```cpp
13
13
auto options = Microsoft::WRL::Make<CoreWebView2EnvironmentOptions>();
14
14
// Don't expect any other process to share the WebView browser process instance.
0 commit comments