BeeCloudSDKDemo.return_kq_url.GetRequestGet C# (CSharp) Method

GetRequestGet() public method

获取快钱GET过来通知消息,并以“参数名=参数值”的形式组成数组
public GetRequestGet ( ) : string>.SortedDictionary
return string>.SortedDictionary
        public SortedDictionary<string, string> GetRequestGet()
        {
            int i = 0;
            SortedDictionary<string, string> sArray = new SortedDictionary<string, string>();
            NameValueCollection coll;
            //Load Form variables into NameValueCollection variable.
            coll = Request.QueryString;

            // Get names of all forms into a string array.
            String[] requestItem = coll.AllKeys;

            for (i = 0; i < requestItem.Length; i++)
            {
                sArray.Add(requestItem[i], Request.QueryString[requestItem[i]]);
            }

            return sArray;
        }