Creates an object representing the response information returned by processing a payment through a payment gateway.

Namespace: Asi.iBO.Commerce
Assembly: Asi.iBO (in Asi.iBO.dll) Version: 15.1.3.0

Syntax

C#
public PaymentGatewayResponse(
	bool isSuccess,
	string referenceId,
	string result,
	string responseMessage,
	string authorizationCode
)
Visual Basic
Public Sub New ( _
	isSuccess As Boolean, _
	referenceId As String, _
	result As String, _
	responseMessage As String, _
	authorizationCode As String _
)
Visual C++
public:
PaymentGatewayResponse(
	bool isSuccess, 
	String^ referenceId, 
	String^ result, 
	String^ responseMessage, 
	String^ authorizationCode
)

Parameters

isSuccess
Type: System..::..Boolean
An indication of whether or not the transaction was successful
referenceId
Type: System..::..String
The Reference ID returned from the payment processor
result
Type: System..::..String
The result string returned from the payment processor
responseMessage
Type: System..::..String
The response message returned from the payment processor
authorizationCode
Type: System..::..String
The authorization code returned from the payment processor

See Also