IAccountsProviderUpdateLogOnFailureInfo 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 (24.3.0.1000)
Syntax [ObsoleteAttribute("Use IAccountsProvider2.UpdateDynamicAccountProperties")]
void UpdateLogOnFailureInfo(
Guid accountId,
int failedLogOnCount,
DateTime? lockedUntil
)
<ObsoleteAttribute("Use IAccountsProvider2.UpdateDynamicAccountProperties")>
Sub UpdateLogOnFailureInfo (
accountId As Guid,
failedLogOnCount As Integer,
lockedUntil As DateTime?
)
[ObsoleteAttribute(L"Use IAccountsProvider2.UpdateDynamicAccountProperties")]
void UpdateLogOnFailureInfo(
Guid accountId,
int failedLogOnCount,
Nullable<DateTime> lockedUntil
)
[<ObsoleteAttribute("Use IAccountsProvider2.UpdateDynamicAccountProperties")>]
abstract UpdateLogOnFailureInfo :
accountId : Guid *
failedLogOnCount : int *
lockedUntil : Nullable<DateTime> -> unit
Parameters
- accountId
- Type: SystemGuid
The ID of the account. - failedLogOnCount
- Type: SystemInt32
The new number of consecutive failed logon attempts. - lockedUntil
- Type: SystemNullableDateTime
The time until which the account is locked, or if the account is not
yet locked.
Remarks Notes to Implementers |
---|
If the account lockout feature is not used, this method may have an empty implementation. |
Notes to Implementers |
---|
This method should not throw any exceptions. |
If
IAccountsProvider2 is implemented, this method will never be called.
See Also