Retrieving Settings Level's or User Account's Allowed IP Address (GetLimitAccessByIP)

icon_info.gif

This interface is available in EFT Server 6.1.

The ICIClientSettings::GetLimitAccessByIP method allows you to retrieve whether the Limit Access By IP feature is turned on for the Setting Level or user account.

HRESULT GetLimitAccessByIP(

[out, optional] VARIANT_BOOL *pInherited, // whether option is

// inherited from parent?

[out, retval] VARIANT_BOOL *pVal); // whether feature is ON?

Example (VBScript):

If client.GetLimitAccessByIP Then

MsgBox "client’s Limit Access by IP is on"

End If