Show/Hide Toolbars

How to Implement Server Scripting and Logging With FVTerm

This call is specifically to support the FVTerm Single-Signon Functionality but can also be published by alternative SSO implementations.  The InventuSSO implementation can have hosts with multiple user ID accounts--this call will delete one of those accounts from the credentials folder.

 

The identityBase is the user's authenticated identity, such as an email address or active directory account.  userID is the host account that is to be deleted.

 

Return true if deleted, false if not...

 

         static public bool DeleteUserID(string hostName, string identityBase, string userID)

         {

                 return Credentials.DeleteHostUserID(hostName, identityBase, userID);

         }