Ejemplo n.º 1
0
 internal static void OnAccountRet(string json)
 {
     MSDKLog.Log("OnAccountRet json= " + json);
     if (AccountEvent != null)
     {
         var ret = new MSDKAccountRet(json);
         try
         {
             AccountEvent(ret);
         }
         catch (Exception e)
         {
             MSDKLog.LogError(e.StackTrace);
         }
     }
     else
     {
         MSDKLog.LogError("No callback for AccountEvent!");
     }
 }
Ejemplo n.º 2
0
 public virtual void onAccountEvent(MSDKAccountRet ret)
 {
     AccountEvent(ret);
 }