WebPartPersonalization.ResetPersonalizationState Method

Definition

Resets personalization data for the current page, scope, and user in the underlying data store.

public virtual void ResetPersonalizationState ();

Exceptions

An attempt was made to reset personalization data when the current user is not authorized to modify personalization state.

-or-

The Page instance for the associated WebPartManager is null.

-or-

The value of the Request property on the WebPartManager control's associated Page instance is null.

-or-

The WebPartPersonalization instance cannot reference a valid personalization provider.

Remarks

This method resets personalization data for the current page, scope, and user in the underlying data store. As a side effect of the reset, the currently executing page is re-executed by a Transfer call. Note that this transfer re-executes the current page as a GET request regardless of how the page was originally requested.

This method can be called at any time. Internally, this method calls the ResetPersonalizationState method on the provider. After data is successfully reset, the ShouldResetPersonalizationState property is set to true. This property is used elsewhere by the WebPartPersonalization instance to bypass extracting personalization data from control properties and saving it if data has already been reset.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also