ValidateProfile Method (String, String, String, ServiceMode)

AuthorizeNet .NET

Collapse imageExpand ImageCopy imageCopyHover image
This function validates the information on a profile - making sure what you have stored at AuthNET is valid. You can do this in two ways: in TestMode it will just run a validation to be sure all required fields are present and valid. If you specify "live" - a $0.01 charge will be applied to the profile

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

Syntax

C#
public string ValidateProfile(
	string profileID,
	string paymentProfileID,
	string shippingAddressID,
	ServiceMode mode
)
Visual Basic
Public Function ValidateProfile ( _
	profileID As String, _
	paymentProfileID As String, _
	shippingAddressID As String, _
	mode As ServiceMode _
) As String
Visual C++
public:
virtual String^ ValidateProfile(
	String^ profileID, 
	String^ paymentProfileID, 
	String^ shippingAddressID, 
	ServiceMode mode
) sealed

Parameters

profileID
Type: System..::..String
The profile ID.
paymentProfileID
Type: System..::..String
The payment profile ID.
shippingAddressID
Type: System..::..String
The shipping address ID.
mode
Type: AuthorizeNet..::..ServiceMode
The mode.

Return Value

Implements

ICustomerGateway..::..ValidateProfile(String, String, String, ServiceMode)

See Also