Open this page in the API Guide

IAccountService.UpdateLastLogOnIpAddress Method

Update the last log on IP address of an account.

Namespace:  Dundas.BI.AccountServices
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
void UpdateLastLogOnIpAddress(
	Guid accountId,
	string ipAddress
)

Parameters

accountId
Type: System.Guid
ID of the account.
ipAddress
Type: System.String
IP address of the location where the user logs on.
Exceptions
ExceptionCondition
ArgumentExceptionaccountId is Empty.
NotFoundExceptionAn account with the specified ID does was not found.
NoPrivilegeExceptionThe caller is not a system administrator.
InvalidSessionExceptionThe caller context is not associated with a valid session.
Remarks
This method will not have any effect unless the accounts provider implements IAccountsProvider2.
See Also