Kurejito.Gateways.SagePay.VspDirect.SagePayPaymentGateway.MakePostData C# (CSharp) Method

MakePostData() private method

private MakePostData ( ) : string>.IDictionary
return string>.IDictionary
        private IDictionary<string, string> MakePostData()
        {
            IDictionary<string, string> data = new Dictionary<string, string>
            {
                {"Vendor", vendorName},
                {"VPSProtocol", vpsProtocol.ToString()}
            };
            return (data);
        }