byte[] byts = new byte[HttpContext.Current.Request.InputStream.Length];
HttpContext.Current.Request.InputStream.Read(byts, 0, byts.Length);
string req = System.Text.Encoding.Default.GetString(byts);
var te= Newtonsoft.Json.JsonConvert.DeserializeObject<dynamic>(req);
Dictionary<string, dynamic> dic = new Dictionary<string, dynamic>();
foreach (var VARIABLE in te)
{
dic.Add(VARIABLE.Name, VARIABLE.Value);
}
foreach (var VARIABLE in dic.OrderBy(x => x.Key))
{
int i = VARIABLE.Value;
}