Co-authored-by: jaehong Park <jay.ho.park@samsung.com>
using System;
using System.Collections.Generic;
using System.Dynamic;
+using System.Globalization;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
result.Add("token", (string[])msg.GetItem("return_token"));
if (msg.Contains("request_id"))
- e.RequestId = requestid = int.Parse((string)msg.GetItem("request_id"));
+ e.RequestId = requestid = int.Parse((string)msg.GetItem("request_id"), NumberStyles.Integer, CultureInfo.InvariantCulture);
else
return;