private HttpContent CreateHttpContent(Step step, TransactionResultEnum transactionResult) { var postData = new List<KeyValuePair<string, string>>(); postData.Add(new KeyValuePair<string, string>("tnxId", this.tnxId)); postData.Add(new KeyValuePair<string, string>("step", step.CurrentStepId.ToString())); postData.Add(new KeyValuePair<string, string>("status", transactionResult.ToString())); HttpContent content = new FormUrlEncodedContent(postData); return content; }
private HttpContent CreateHttpContent(Step step, TransactionResultEnum transactionResult) { var postData = new List <KeyValuePair <string, string> >(); postData.Add(new KeyValuePair <string, string>("tnxId", this.tnxId)); postData.Add(new KeyValuePair <string, string>("step", step.CurrentStepId.ToString())); postData.Add(new KeyValuePair <string, string>("status", transactionResult.ToString())); HttpContent content = new FormUrlEncodedContent(postData); return(content); }
public void JustDecompileGenerated_set_RecreditStatus(TransactionResultEnum value) { this.JustDecompileGenerated_RecreditStatus_k__BackingField = value; }