Skip to content

Commit 80a7b2f

Browse files
committed
Review Feedback 4
1 parent e501b5b commit 80a7b2f

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

specs/CookieManagement.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,8 @@ interface ICoreWebView2Cookie : IUnknown {
253253
254254
/// The domain for which the cookie is valid.
255255
/// The default is the host that this cookie has been received from.
256+
/// Note that, for instance, ".bing.com", "bing.com", and "www.bing.com" are
257+
/// considered different domains.
256258
[propget] HRESULT Domain([out, retval] LPWSTR* domain);
257259
258260
/// The path for which the cookie is valid. The default is "/", which means
@@ -312,6 +314,8 @@ interface ICoreWebView2CookieManager : IUnknown {
312314
[out, retval] ICoreWebView2Cookie** cookie);
313315
314316
/// Gets a list of cookies matching the specific URI.
317+
/// If uri is empty string or null, all cookies under the same profile are
318+
/// returned.
315319
/// You can modify the cookie objects, call
316320
/// ICoreWebView2CookieManager::AddOrUpdateCookie, and the changes
317321
/// will be applied to the webview.
@@ -408,6 +412,8 @@ namespace Microsoft.Web.WebView2.Core
408412
CoreWebView2Cookie CreateCookie(CoreWebView2 cookie);
409413

410414
/// Gets a list of cookies matching the specific URI.
415+
/// If uri is empty string or null, all cookies under the same profile are
416+
/// returned.
411417
/// You can modify the cookie objects, call
412418
/// CoreWebView2CookieManager.AddOrUpdateCookie, and the changes
413419
/// will be applied to the webview.
@@ -459,6 +465,8 @@ namespace Microsoft.Web.WebView2.Core
459465

460466
/// The domain for which the cookie is valid.
461467
/// The default is the host that this cookie has been received from.
468+
/// Note that, for instance, ".bing.com", "bing.com", and "www.bing.com" are
469+
/// considered different domains.
462470
String Domain { get; };
463471

464472
/// The path for which the cookie is valid. The default is "/", which means

0 commit comments

Comments
 (0)