Kurejito.Gateways.SagePay.VspDirect.SagePayPaymentGateway.ParseResponse C# (CSharp) Méthode

ParseResponse() private méthode

private ParseResponse ( string postResponse ) : PaymentResponse
postResponse string
Résultat PaymentResponse
        private PaymentResponse ParseResponse(string postResponse)
        {
            var response = new PaymentResponse {
                Reason = postResponse
            };
            foreach (var pair in Tokenize(postResponse)) {
                this.PopulateResponseProperty(response, pair);
            }
            return (response);
        }