interface ICoreWebView2BasicAuthenticationResponse
Note
This reference is no longer being maintained. For the latest API reference, see WebView2 API Reference.
interface ICoreWebView2BasicAuthenticationResponse
: 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)
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. |
Product | Introduced |
---|---|
WebView2 Win32 | N/A |
WebView2 Win32 Prerelease | 1.0.1133 |
Password provided for authentication.
public HRESULT get_Password(LPWSTR * password)
User name provided for authentication.
public HRESULT get_UserName(LPWSTR * userName)
Set password property.
public HRESULT put_Password(LPCWSTR password)
Set user name property.
public HRESULT put_UserName(LPCWSTR userName)