Пример #1
0
 internal static void OnQrCodeRet(string json)
 {
     MSDKLog.Log("OnQrcodeRet json= " + json);
     if (QrCodeRetEvent != null)
     {
         var ret = new MSDKQrCodeRet(json);
         try
         {
             QrCodeRetEvent(ret);
         }
         catch (Exception e)
         {
             MSDKLog.LogError(e.StackTrace);
         }
     }
     else
     {
         MSDKLog.LogError("No callback for QrCodeRetEvent !");
     }
 }
Пример #2
0
 public virtual void onQrCodeRetEvent(MSDKQrCodeRet ret)
 {
     QrCodeRetEvent(ret);
 }