Beispiel #1
0
 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();
 }
Beispiel #2
0
 public void GetComments(String id,int count, GetCommentsCompleteHandler handler)
 {
     if (m_shuoAPI == null)
         m_shuoAPI = new ShuoAPI();
     m_shuoAPI.GetComments(id,count, handler);
 }
Beispiel #3
0
 public void GetUserTimeLine(String id, int count, GetUserTimeLineCompleteHandler handler)
 {
     if(m_shuoAPI == null)
         m_shuoAPI = new ShuoAPI();
     m_shuoAPI.GetUserTimeLine(id, count, handler);
 }
Beispiel #4
0
 public void AddComments(String id, String text, CompleteHandler hanlder)
 {
     if (m_shuoAPI == null)
         m_shuoAPI = new ShuoAPI();
     m_shuoAPI.AddComments(id, text, hanlder);
 }