Table of Contents

Property SaveUserDataProfileHandler

Namespace
DotNetBrowser.UserData
Assembly
DotNetBrowser.dll

SaveUserDataProfileHandler

Gets or sets a handler that is used when the user is prompted to save the user data profile to the user data profile store .

IHandler<SaveUserDataProfileParameters, SaveUserDataProfileResponse> SaveUserDataProfileHandler { get; set; }

Property Value

IHandler<SaveUserDataProfileParameters, SaveUserDataProfileResponse>

Remarks

This handler is equivalent to the "Save 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 Save to save this user data profile to the autofill store. All saved user data profiles are shown in the suggestion pop-up when focusing the web form control.

Use the Decline to decline to save the user data profile. If the current 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.

Exceptions

ObjectDisposedException

The IUserDataProfiles has already been disposed.