public void PostStatusesWithPic(String text, String path, CompleteHandler hanlder) { if (m_shuoAPI == null) m_shuoAPI = new ShuoAPI(); new System.Threading.Thread(() => { m_shuoAPI.PostStatusesWithPic(text, path, hanlder); }).Start(); }
public void GetComments(String id,int count, GetCommentsCompleteHandler handler) { if (m_shuoAPI == null) m_shuoAPI = new ShuoAPI(); m_shuoAPI.GetComments(id,count, handler); }
public void GetUserTimeLine(String id, int count, GetUserTimeLineCompleteHandler handler) { if(m_shuoAPI == null) m_shuoAPI = new ShuoAPI(); m_shuoAPI.GetUserTimeLine(id, count, handler); }
public void AddComments(String id, String text, CompleteHandler hanlder) { if (m_shuoAPI == null) m_shuoAPI = new ShuoAPI(); m_shuoAPI.AddComments(id, text, hanlder); }