@@ -182,10 +182,11 @@ library WebView2
182182 /// returned will be null.
183183 interface ICoreWebView2WebResourceResponseReceivedEventArgs : IUnknown
184184 {
185- /// Web resource request object. Any modifications to this object will be ignored.
185+ /// Web resource request object. Modifications to this object have no effect
186+ /// on how the request is processed as it has already been sent.
186187 [propget] HRESULT Request([out, retval] ICoreWebView2WebResourceRequest** request);
187- /// Web resource response object. Any modifications to this object
188- /// will be ignored .
188+ /// Web resource response object. Modifications to this object have no effect
189+ /// on how the response is processed .
189190 [propget] HRESULT Response([out, retval] ICoreWebView2WebResourceResponse** response);
190191
191192 /// Async method to ensure that the Content property of the response contains the actual response body content.
@@ -217,10 +218,10 @@ namespace Microsoft.Web.WebView2.Core
217218 runtimeclass CoreWebView2WebResourceResponseReceivedEventArgs
218219 {
219220 /// Web resource request object.
220- /// Any modifications to this object will be ignored .
221+ /// Modifications to this object have no effect on how the request is processed as it has already been sent .
221222 CoreWebView2WebResourceRequest Request { get ; };
222223 /// Web resource response object.
223- /// Any modifications to this object will be ignored .
224+ /// Modifications to this object have no effect on how the response is processed .
224225 CoreWebView2WebResourceResponse Response { get ; };
225226
226227 /// Async method to ensure that the Content property of the response contains the actual response body content.
0 commit comments