/// <summary> /// Loops the form request and pushes the data into the request, if preset. /// </summary> static void SerializeForm(IGatewayRequest request, NameValueCollection collection) { var api = new ApiFields (); foreach (string item in collection.Keys) { //always send the keys to the API - this allows for Merchant Custom Keys request.Queue(item, collection[item]); } }
/// <summary> /// Loops the form request and pushes the data into the request, if preset. /// </summary> static void SerializeForm(IGatewayRequest request, NameValueCollection collection) { var api = new ApiFields(); foreach (string item in collection.Keys) { //always send the keys to the API - this allows for Merchant Custom Keys request.Queue(item, collection[item]); } }