예제 #1
0
 public void PostCommentToActivity(string activityId, ActivityPostContent comment, Action <ActivityPost> onSuccess,
                                   Action <GetSocialError> onFailure)
 {
     _getSocial.CallStatic("postCommentToActivity", activityId, comment.ToAjo(), new CallbackProxy <ActivityPost>(onSuccess, onFailure));
 }
예제 #2
0
 public void PostActivityToFeed(string feed, ActivityPostContent content, Action <ActivityPost> onSuccess, Action <GetSocialError> onFailure)
 {
     _getSocial.CallStatic("postActivityToFeed", feed, content.ToAjo(), new CallbackProxy <ActivityPost>(onSuccess, onFailure));
 }