Type: String
The authenticationLibrary property of the TcpIpConnection class contains the name of the library that contains the genAuthChallengeMethod, genAuthResponseMethod, and verifyAuthResponseMethod authentication methods.
The code fragment in the following example shows the use of the authenticationLibrary property.
authConf := AuthConf.firstInstance; if authConf <> null then self.tcp.authenticationLibrary := authConf.authLib; self.tcp.genAuthChallengeMethod := authConf.challengeMethod; self.tcp.genAuthResponseMethod := authConf.responseMethod; self.tcp.verifyAuthResponseMethod := authConf.verifyMethod; endif;