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 !"); } }
public virtual void onQrCodeRetEvent(MSDKQrCodeRet ret) { QrCodeRetEvent(ret); }