PortSight Secure Access Documentation

Storing and Retrieving User Settings in Your WinForms Applications


You can use ARWSWebService.SetPropertyValue() and ARWSWebService.GetPropertyValue() methods for storing and retrieving any user settings related to the user account. The maximum length of the stored data is 3500 characters.

 

Please see Authentication and Authorization in WinForms applications - a Step-by-Step Guide for details about how to secure your application with Secure Access. Then you can simply add the code like this one:

 


  SAWSClient.SetPropertyValue("MyPrefferedColor", "blue")
MsgBox(SAWSClient.GetPropertyValue("MyPrefferedColor"))