CardLogout event
This event occurs after a user logs out.
This event is used by the script specified on the Authentication tab by the Restricted Access User Membership option.
Argument | Value | Description |
---|---|---|
User | The authenticate user object. | |
DeviceAddress | The string value that is IP address of the MFP device. |
Remarks
You can use this event to return the user and MFP device IP address after the user logs out.
Example
Function CardLogout(User, DeviceAddress)
CardLogout = "Debug Msg: " + User.Username + " (" + User.DoDEDI + ") logged out of " + DeviceAddress
End Function