SqlPersonalizationProvider.ResetState Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Deletes personalization state information from the underlying data store, based on the specified parameters.
public:
override int ResetState(System::Web::UI::WebControls::WebParts::PersonalizationScope scope, cli::array <System::String ^> ^ paths, cli::array <System::String ^> ^ usernames);
public override int ResetState(System.Web.UI.WebControls.WebParts.PersonalizationScope scope, string[] paths, string[] usernames);
override this.ResetState : System.Web.UI.WebControls.WebParts.PersonalizationScope * string[] * string[] -> int
Public Overrides Function ResetState (scope As PersonalizationScope, paths As String(), usernames As String()) As Integer
Parameters
- scope
- PersonalizationScope
A PersonalizationScope indicating the personalization information to be queried. This value cannot be null.
Returns
The number of rows deleted.
Exceptions
Either the paths or the usernames parameter is an empty array.
-or-
The paths and usernames parameters contained within the respective arrays do not meet the validation rules.
The scope specified is not a member of the PersonalizationScope enumeration.
Remarks
No wildcard characters are supported by this method.
Only the following combinations of parameters are allowed:
The
scopeparameter is set, and all other parameters are set tonull. This combination deletes all Web Parts personalization data associated with the personalization scope indicated byscope.The
scopeparameter is set, and thepathsparameter contains at least one value. This combination deletes all Web Parts personalization data for the specified path or paths that are in the personalization scope indicated byscope.The
scopeparameter is set to User, thepathsparameter is set and contains only one path, and theusernamesparameter contains at least one value. This combination deletes all user personalization Web Parts data for the given path that is associated with the user or users contained inusernames.The
scopeparameter is set to User, thepathsparameter isnull, and theusernamesparameter contains at least one value. This combination deletes all per-user personalization Web Parts data, across all paths, associated with the user or users contained inusernames.
Any other combination of parameter values is invalid and will throw an ArgumentException exception. For example, the following two combinations are not allowed:
The
usernamesparameter cannot be provided when thescopeparameter is set to Shared.The
pathsparameter cannot contain more than one entry when theusernamesparameter is notnull.
The paths and usernames parameters contained within the respective arrays must meet the following validation rules. If any validation rules fail for any member of the parameter arrays, an ArgumentException exception is thrown. The validation rules include:
nullvalues are not allowed.An empty string ("") after the string has been trimmed is not allowed.
No user names contained in the
usernamesparameter can contain commas.The length of any path in the
pathsparameter cannot be greater than 256 characters.The length of any user name in the
usernamesparameter cannot be greater than 256 characters.