SqlPersonalizationProvider.ResetUserState(String, DateTime) 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 user personalization data from the underlying data store, based on the specified parameters.
public:
override int ResetUserState(System::String ^ path, DateTime userInactiveSinceDate);
public override int ResetUserState(string path, DateTime userInactiveSinceDate);
override this.ResetUserState : string * DateTime -> int
Public Overrides Function ResetUserState (path As String, userInactiveSinceDate As DateTime) As Integer
Parameters
- path
- String
The path of the personalization data to be deleted. This value can be null but cannot be an empty string ("").
- userInactiveSinceDate
- DateTime
The date indicating the last activity.
Returns
The count of rows deleted from the underlying data store.
Exceptions
Remarks
This method's parameters have the following restrictions:
The
pathparameter cannot contain wildcard characters.If the
pathparameter is non-null, then only per-user personalization records associated withpathwill be deleted.Only per-user personalization records associated with users that are considered inactive since the date specified in the
userInactiveSinceDateparameter will be deleted. The exact comparison would be to delete records where the LastActivityDate property is less than or equal to theuserInactiveSinceDateparameter.If both parameters are provided, then records that match both constraints are deleted.
The
pathparameter can benull.The
pathparameter cannot be an empty string after trimming.The UserInactiveSinceDate property cannot be
null.