private Dictionary <string, object> getSuperProperties() { Dictionary <string, object> result = null; AndroidJavaObject superPropertyObject = instance.Call <AndroidJavaObject>("getSuperProperties"); if (null != superPropertyObject) { string superPropertiesString = superPropertyObject.Call <string>("toString"); result = TD_MiniJSON.Deserialize(superPropertiesString); } return(result); }
private Dictionary <string, object> getSuperProperties() { string superPropertiesString = get_super_properties(token.appid); return(TD_MiniJSON.Deserialize(superPropertiesString)); }