'DeclarationPublic Function VerifyUserIdentityToken( _ ByVal userIdentityToken As IUserIdentityToken, _ ByRef userIdentity As IUserIdentity _ ) As UserVerificationOutcome
'UsageDim instance As UserManagers Dim userIdentityToken As IUserIdentityToken Dim userIdentity As IUserIdentity Dim value As UserVerificationOutcome value = instance.VerifyUserIdentityToken(userIdentityToken, userIdentity)
public UserVerificationOutcome VerifyUserIdentityToken( IUserIdentityToken userIdentityToken, out IUserIdentity userIdentity )
public: UserVerificationOutcome VerifyUserIdentityToken( IUserIdentityToken^ userIdentityToken, [Out] IUserIdentity^ userIdentity )
Parameters
- userIdentityToken
- The user identity token to verify.
The value of this parameter cannot be
null(Nothingin Visual Basic). - userIdentity
- When this method returns UserVerificationOutcome.Success, contains the verified user identity if verification was successful; otherwise, it contains
null.The value of this parameter can be
null(Nothingin Visual Basic).