ICoreWebView2Profile5

Undocumented in source.
version(Windows && inline_webview2_bindings && all)
interface ICoreWebView2Profile5 : ICoreWebView2Profile4 {
static const
GUID iid;
}

Members

Functions

get_CookieManager
HRESULT get_CookieManager(ICoreWebView2CookieManager* cookieManager)

Get the cookie manager for the profile. All CoreWebView2s associated with this profile share the same cookie values. Changes to cookies in this cookie manager apply to all CoreWebView2s associated with this profile. See ICoreWebView2CookieManager.

Inherited Members

From ICoreWebView2Profile4

SetPermissionState
HRESULT SetPermissionState(COREWEBVIEW2_PERMISSION_KIND permissionKind, LPCWSTR origin, COREWEBVIEW2_PERMISSION_STATE state, ICoreWebView2SetPermissionStateCompletedHandler completedHandler)

Sets permission state for the given permission kind and origin asynchronously. The change persists across sessions until it is changed by another call to SetPermissionState, or by setting the State property in PermissionRequestedEventArgs. Setting the state to COREWEBVIEW2_PERMISSION_STATE_DEFAULT will erase any state saved in the profile and restore the default behavior. The origin should have a valid scheme and host (e.g. "https://www.example.com"), otherwise the method fails with E_INVALIDARG. Additional URI parts like path and fragment are ignored. For example, "https://wwww.example.com/app1/index.html/" is treated the same as "https://wwww.example.com". See the MDN origin definition

for more details.

GetNonDefaultPermissionSettings
HRESULT GetNonDefaultPermissionSettings(ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandler completedHandler)

Invokes the handler with a collection of all nondefault permission settings. Use this method to get the permission state set in the current and previous sessions.

Meta