interface ICoreWebView2NewWindowRequestedEventArgs2

Note

This reference is no longer being maintained. For the latest API reference, see WebView2 API Reference.

interface ICoreWebView2NewWindowRequestedEventArgs2
  : public ICoreWebView2NewWindowRequestedEventArgs

This is a continuation of the ICoreWebView2NewWindowRequestedEventArgs interface.

Summary

Members Descriptions
get_Name Gets the name of the new window.

Applies to

Product Introduced
WebView2 Win32 1.0.992.28
WebView2 Win32 Prerelease 1.0.1010

Members

get_Name

Gets the name of the new window.

public HRESULT get_Name(LPWSTR * value)

This window can be created via window.open(url, windowName), where the windowName parameter corresponds to Name property. If no windowName is passed to window.open, then the Name property will be set to an empty string. Additionally, if window is opened through other means, such as <a target="windowName">...</a> or <iframe name="windowName">...</iframe>, then the Name property will be set accordingly. In the case of target=_blank, the Name property will be an empty string. Opening a window via ctrl+clicking a link would result in the Name property being set to an empty string.

The caller must free the returned string with CoTaskMemFree. See API Conventions.