//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; }
private string tag2jsonstr(Tag d) { string ret = ""; ret = UmsJson.Serialize(d); return ret; }