Enables an application to retrieve the authentication data previously stored for a particular user's logon name from the authentication repository.
string GetAuthenticationData(
int ,
string ,
string ,
string ,
out string
)
'Declaration
Function GetAuthenticationData( _
ByVal As Integer, _
ByVal As String, _
ByVal As String, _
ByVal As String, _
ByRef As String _
) As String
'Usage
Dim instance As IAuthenticationRepository
Dim coupon As Integer
Dim logonName As String
Dim dataFormat As String
Dim appSignature As String
Dim userData As String
Dim value As String
value = instance.GetAuthenticationData(coupon, logonName, dataFormat, appSignature, userData)
String^ GetAuthenticationData(
int ,
String^ ,
String^ ,
String^ ,
[Out] String^
)
Parameters
- coupon
- The connection coupon obtain from the Connect method.
- logonName
- A user's logon name.
- dataFormat
- An application-defined string that is used when an application needs to maintain multiple forms of authentication data for a user (e.g., password, thumbprint image, etc.). If only one form of authentication data is needed, this string can be empty.
- appSignature
- The application's digital signature.
- userData
- Application-specific data used to authenticate the user.
Return Value
The digital signature of the authentication repository.