IAccountsProviderUpdateLogOnTimestampAndCount Method

Note: This API is now obsolete.

Updates the logon timestamp and logon count of a LocalUserAccount or a WindowsUserAccount.

Namespace:  Dundas.BI.AccountServices.Extensibility
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
[ObsoleteAttribute("Use IAccountsProvider2.UpdateDynamicAccountProperties")]
void UpdateLogOnTimestampAndCount(
	Guid accountId,
	DateTime logOnTimestamp
)

Parameters

accountId
Type: SystemGuid
The ID of the account to update.
logOnTimestamp
Type: SystemDateTime
The logon timestamp (UTC).
Remarks
Note Notes to Implementers
If keeping track of the last logon time and number of logons is not required, this method may have an empty implementation.
Note Notes to Implementers
This method should not throw any exceptions.
If IAccountsProvider2 is implemented, this method will never be called.
See Also