Click or drag to resize

IUserDataProfilesUpdateUserDataProfileHandler Property

Gets or sets a handler that is used when the user is prompted to update the user data profile to the user data profile store. For example, when the user changes the email address to an empty string.

Namespace:  DotNetBrowser.UserData
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
IHandler<UpdateUserDataProfileParameters, UpdateUserDataProfileResponse> UpdateUserDataProfileHandler { get; set; }

Property Value

Type: IHandlerUpdateUserDataProfileParameters, UpdateUserDataProfileResponse
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe IUserDataProfiles has already been disposed.
Remarks

This callback is equivalent to the "Update Address?" bubble in Chromium.

The handler is invoked when the user submits a web form where fields are associated with a user data profile such as city, state, street, zip code, email address, etc.

Use the Update to update the user data profile in the autofill data store.

Use the Decline to decline to update the user data profile. If the current user data profile is declined then the callback will be invoked again when submitting the web form with the same user data.

The handler is not invoked if autofill is disabled.

See Also