Dovico.TrackITWSAPI.API.EncryptString(System.String)
Function Overview:
This method encrypts a string so that sensitive information can be passed back and forth between client and server encrypted rather than as clear text all the time. If calling this method with database names, user ids and passwords concerns you, your best bet is to call the web service through https. Performance will be slower, but it will definitely be as secure as possible. You will need to use this function when initializing the CConnectionInfo structure for calls to SessionLogin.
Parameter List:
sStringToEncrypt - string - string to encrypt
Returns
A string containing the encrypted version of the original string.
Example:
string sEncryptedString = wsapi.EncryptString("Example String");