interface ICoreWebView2ExperimentalBasicAuthenticationResponse

Note

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

Note

This an experimental API that is shipped with our prerelease SDK. See WebView2 release notes.

interface ICoreWebView2ExperimentalBasicAuthenticationResponse
  : public IUnknown

Represents a Basic HTTP authentication response that contains a user name and a password as according to RFC7617 (https://tools.ietf.org/html/rfc7617)

Summary

Members Descriptions
get_Password Password provided for authentication.
get_UserName User name provided for authentication.
put_Password Set password property.
put_UserName Set user name property.

Applies to

Product Introduced
WebView2 Win32 N/A
WebView2 Win32 Prerelease 1.0.1056

Members

get_Password

Password provided for authentication.

public HRESULT get_Password(LPWSTR * password)

get_UserName

User name provided for authentication.

public HRESULT get_UserName(LPWSTR * userName)

put_Password

Set password property.

public HRESULT put_Password(LPCWSTR password)

put_UserName

Set user name property.

public HRESULT put_UserName(LPCWSTR userName)