Exemplo n.º 1
0
 public static void PostItem(this ActivityFeedService self, Account account, JID from, string type, string actionItem, string content, string contentUrl, object data)
 {
     self.PostItem(new XmppActivityFeedItem(account, from, type, actionItem, content, contentUrl, data));
 }
Exemplo n.º 2
0
 public ActivityEntryController(ActivityFeedService service)
 {
     _service = service;
 }
Exemplo n.º 3
0
 public static void PostItem(this ActivityFeedService self, Account account, JID from, string type, string actionItem, string content, string contentUrl)
 {
     PostItem(self, account, from, type, actionItem, content, contentUrl, null);
 }