public int GetContactInfo(StringBuilder _Account, ref STContact _pContactInfo)
 {
     try
     {
         LogManager.SystemLog.Debug(string.Format("Start UC_SDK_GetContactInfo"));
         int iRet = UCInterface.UC_SDK_GetContactInfo(_Account, ref _pContactInfo);
         if (iRet != 0)
         {
             LogManager.SystemLog.Error(string.Format("Start UC_SDK_GetContactInfo error {0}", iRet));
             return(iRet);
         }
         LogManager.SystemLog.Debug(string.Format("End UC_SDK_GetContactInfo"));
         return(iRet);
     }
     catch (Exception ex)
     {
         LogManager.SystemLog.Debug(ex.ToString());
         return(-1);
     }
 }