Skip to content

Commit d9ef9da

Browse files
authored
Update IsSmartScreenRequired
1 parent d08709c commit d9ef9da

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

specs/IsSmartScreenRequired

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
[Edge SmartScreen](https://docs.microsoft.com/en-us/deployedge/microsoft-edge-security-smartscreen) helps you identify reported phishing and malware websites, and also helps you make informed decisions about downloads.
44

5-
Currently, users can use `options->put_AdditionalBrowserArguments(L"--disable-features=msSmartScreenProtection")` to control SmartScreen in the WebView2 application. It is essentially a startup parameter of the browser process. It must be determined when the WebView2Environment is created. And Cannot be modified at runtime.
5+
Currently, end developers can use `options->put_AdditionalBrowserArguments(L"--disable-features=msSmartScreenProtection")` to control SmartScreen in the WebView2 application. It is essentially a startup parameter of the browser process. It must be determined when the WebView2Environment is created. And and cannot be modified at runtime.
66

7-
To support more flexibility. We introduce a new API.
7+
To support more flexibility we introduce a new API.
88

99
In this document we describe the new setting. We'd appreciate your feedback.
1010

@@ -15,7 +15,7 @@ Users can use ICoreWebView2Settings to control it.When it is changed, all WebVie
1515
The default value for `IsSmartScreenRequired` is the current actual value.After this, this setting does not mean the actual situation, it only represents the intention of current WebView.
1616
When the set `false` takes effect, it will turn off SmartScreen protection when visiting web pages and performing downloads.
1717

18-
Changes to `IsSmartScreenRequired` does not take effect until the next navigation or downloads.
18+
Changes to `IsSmartScreenRequired` does not take effect until the next navigation or download.
1919

2020

2121
# Examples
@@ -57,7 +57,7 @@ See [API Details](#api-details) section below for API reference.
5757
[uuid(d667d3a7-c1b7-479f-8833-db7547df6687), object, pointer_default(unique)]
5858
interface ICoreWebView2Settings11 : ICoreWebView2Settings10 {
5959
/// SmartScreen helps you identify reported phishing and malware websites
60-
/// also helps you make informed decisions about downloads.
60+
/// and also helps you make informed decisions about downloads.
6161
/// `IsSmartScreenRequired` is used to control whether SmartScreen is turned on or not.
6262
/// All WebViews using the same user data folder share the same SmartScreen setting.
6363
/// When it is changed, the change will be applied to all WebViews using the

0 commit comments

Comments
 (0)