示例#1
0
 public void RetweetOff(ClientFollowingUpdate relation)
 {
     if (OnRetweetOff != null)
     {
         Application.Current.Dispatcher.BeginInvoke(OnRetweetOff, new object[] { relation });
     }
     Response(eResponse.FOLLOWING_UPDATE);
 }
示例#2
0
 public void ResponseRetweetOff(ClientFollowingUpdate relation)
 {
     if (DataInstence.UpdateRetweetOff(relation.relationship.target.id))
     {
         ShowMessageBox($"{relation.relationship.target.screen_name}의 리트윗을 표시하지 않습니다.", "알림", MessageBoxImage.Information);
     }
     else
     {
         ShowMessageBox($"{relation.relationship.target.screen_name}의 리트윗을 표시합니다.", "알림", MessageBoxImage.Information);
     }
 }