Ejemplo n.º 1
0
 //get Tag data
 public Tag getTagData(string tags)
 {
     Tag tag = new Tag();
     
     tag.appkey = UmsManager.appkey;
     tag.tags = HttpUtility.UrlEncode(tags);
     tag.deviceid = Utility.getDeviceId();
     return tag;
 }
Ejemplo n.º 2
0
 private string tag2jsonstr(Tag d)
 {
     string ret = "";
     ret = UmsJson.Serialize(d);
     return ret;
 }