Click or drag to resize

IUserDataProfilesSaveUserDataProfileHandler Property

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 .

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

Property Value

Type: IHandlerSaveUserDataProfileParameters, SaveUserDataProfileResponse
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe IUserDataProfiles has already been disposed.
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.

See Also