本文整理汇总了C#中NVPCodec.GetKey方法的典型用法代码示例。如果您正苦于以下问题:C# NVPCodec.GetKey方法的具体用法?C# NVPCodec.GetKey怎么用?C# NVPCodec.GetKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NVPCodec
的用法示例。
在下文中一共展示了NVPCodec.GetKey方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Page_Load
protected void Page_Load(object sender, EventArgs e)
{
try
{
//Read The IPN POST
string strFormValues = Encoding.ASCII.GetString(Request.BinaryRead(Request.ContentLength));
string strNewRequest;
//Create IPN verification request
HttpWebRequest req = WebRequest.Create("https://www.sandbox.paypal.com/cgi-bin/webscr") as HttpWebRequest;
req.Method = "POST";
req.ContentType = "application/x-www-form-urlencoded";
strNewRequest = strFormValues + "&cmd=_notify-validate";
req.ContentLength = strNewRequest.Length;
StreamWriter swOut = new StreamWriter(req.GetRequestStream(), Encoding.ASCII);
swOut.Write(strNewRequest);
swOut.Close();
HttpWebResponse httwebresponseResponse = req.GetResponse() as HttpWebResponse;
Stream stIPNResponseStream = httwebresponseResponse.GetResponseStream();
Encoding encEncode = System.Text.Encoding.GetEncoding("utf-8");
StreamReader srStream = new StreamReader(stIPNResponseStream, encEncode);
NVPCodec nvpResponse = new NVPCodec();
//Getting Name Value Pairs Collection
nvpResponse.Decode(strFormValues);
string strIPNResponse = srStream.ReadToEnd();
Label lblMessage = new Label();
lblMessage.Text = strIPNResponse;
Page.Form.Controls.Add(lblMessage);
//Creating new database object
MyTestDBEntities MyTestDB = new MyTestDBEntities();
IPN_Main ipn_main = new IPN_Main() { IPN_Status = strIPNResponse, DateTimeStamp = DateTime.Now, RawString = strFormValues };
MyTestDB.IPN_Main.AddObject(ipn_main);
MyTestDB.SaveChanges();
for (int intCounter = 0; intCounter < nvpResponse.Count; ++intCounter)
{
IPN_Variables ipn_variables = new IPN_Variables() { IPN_ID = ipn_main.IPN_ID, Name = nvpResponse.GetKey(intCounter), Variable = nvpResponse.Get(intCounter) };
MyTestDB.IPN_Variables.AddObject(ipn_variables);
//Writing to debug stream for debugging pupose
string strTemp = nvpResponse.GetKey(intCounter) + nvpResponse.Get(intCounter) + Environment.NewLine;
Debug.Write(strTemp);
}
MyTestDB.SaveChanges();
srStream.Close();
}
catch (Exception exErrors)
{
//generic exception handling: adding label on page with exception details
Label lblErrorMessage = new Label();
lblErrorMessage.Text = "Exception: " + exErrors.Message + "<br/>" + exErrors.ToString();
form1.Controls.Add(lblErrorMessage);
Debug.WriteLine("Exception: " + exErrors.Message + "\n\t" + exErrors.ToString());
}
}