Open this page in the API Guide

IAccountsProvider.UpdateLogOnFailureInfo Method

Note: This API is now obsolete.

Updates the log on failure information.

Namespace:  Dundas.BI.AccountServices.Extensibility
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
[ObsoleteAttribute("Use IAccountsProvider2.UpdateDynamicAccountProperties")]
void UpdateLogOnFailureInfo(
	Guid accountId,
	int failedLogOnCount,
	DateTime? lockedUntil
)

Parameters

accountId
Type: System.Guid
The ID of the account.
failedLogOnCount
Type: System.Int32
The new number of consecutive failed logon attempts.
lockedUntil
Type: System.Nullable<DateTime>
The time until which the account is locked, or null if the account is not yet locked.
Remarks
Note Notes to Implementers
If the account lockout feature is not used, 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