本文整理汇总了C#中Soomla.Profile.UserProfile.toJSONObject方法的典型用法代码示例。如果您正苦于以下问题:C# UserProfile.toJSONObject方法的具体用法?C# UserProfile.toJSONObject怎么用?C# UserProfile.toJSONObject使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Soomla.Profile.UserProfile
的用法示例。
在下文中一共展示了UserProfile.toJSONObject方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: _pushEventLoginFinished
protected override void _pushEventLoginFinished(UserProfile userProfile, bool autoLogin, string payload) {
if (SoomlaProfile.IsProviderNativelyImplemented(userProfile.Provider)) return;
AndroidJNI.PushLocalFrame(100);
using(AndroidJavaClass jniSoomlaProfile = new AndroidJavaClass("com.soomla.profile.unity.ProfileEventHandler")) {
ProfileJNIHandler.CallStaticVoid(jniSoomlaProfile, "pushEventLoginFinished", userProfile.toJSONObject().print(), autoLogin, payload);
}
AndroidJNI.PopLocalFrame(IntPtr.Zero);
}
示例2: _storeUserProfile
protected virtual void _storeUserProfile(UserProfile userProfile, bool notify) {
#if UNITY_EDITOR
string key = keyUserProfile(userProfile.Provider);
string val = userProfile.toJSONObject().ToString();
SoomlaUtils.LogDebug(TAG, "key/val:" + key + "/" + val);
PlayerPrefs.SetString(key, val);
if (notify) {
ProfileEvents.OnUserProfileUpdated(userProfile);
}
#endif
}
示例3: _pushEventLoginFinished
protected override void _pushEventLoginFinished(UserProfile userProfile, bool autoLogin, string payload)
{
if (SoomlaProfile.IsProviderNativelyImplemented(userProfile.Provider)) return;
soomlaProfile_PushEventLoginFinished(userProfile.toJSONObject().print(), autoLogin, payload);
}
示例4: _removeUserProfile
protected override void _removeUserProfile(UserProfile userProfile) {
soomlaProfile_RemoveUserProfile(userProfile.toJSONObject().ToString());
}
示例5: _storeUserProfile
protected override void _storeUserProfile(UserProfile userProfile, bool notify) {
soomlaProfile_SetStoredUserProfile(userProfile.toJSONObject().ToString(), notify);
}
示例6: _removeUserProfile
protected override void _removeUserProfile(UserProfile userProfile) {
AndroidJNI.PushLocalFrame(100);
using(AndroidJavaClass jniSoomlaProfile = new AndroidJavaClass("com.soomla.profile.unity.UnitySoomlaProfile")) {
ProfileJNIHandler.CallStaticVoid(jniSoomlaProfile, "removeUserProfile",
userProfile.toJSONObject().ToString());
}
AndroidJNI.PopLocalFrame(IntPtr.Zero);
}
示例7: onLoginFinished
public static void onLoginFinished(UserProfile userProfileJson, bool autoLogin, string payload) {
SoomlaUtils.LogDebug("TAG", "Logged in as: " + userProfileJson.toJSONObject().print());
}