GenerateFingerprint Method

AuthorizeNet .NET

Collapse imageExpand ImageCopy imageCopyHover image
Generates the HMAC-encrypted hash to send along with the SIM form

Namespace: AuthorizeNet
Assembly: AuthorizeNet (in AuthorizeNet.dll) Version: 0.0.0.0

Syntax

C#
public static string GenerateFingerprint(
	string transactionKey,
	string login,
	decimal amount,
	string sequence,
	string timeStamp
)
Visual Basic
Public Shared Function GenerateFingerprint ( _
	transactionKey As String, _
	login As String, _
	amount As Decimal, _
	sequence As String, _
	timeStamp As String _
) As String
Visual C++
public:
static String^ GenerateFingerprint(
	String^ transactionKey, 
	String^ login, 
	Decimal amount, 
	String^ sequence, 
	String^ timeStamp
)

Parameters

transactionKey
Type: System..::..String
The merchant's transaction key
login
Type: System..::..String
The merchant's Authorize.NET API Login
amount
Type: System..::..Decimal
The amount of the transaction
sequence
Type: System..::..String
timeStamp
Type: System..::..String

Return Value

See Also