Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Somehow the first codeblock isn't visible, so I post it again here ;
var actCol = story.Actors.CreateWritableClone() as NewsFeedActorCollection; actCol.Add(new UserAuthor(CurrentUser), null);
So I have a NewsFeedStory and I want to add another actor to this story.
Next step would be to update the story.Actors and then update the Story itself.
However, since story.Actors is readonly this is not possible :-/
Anyone have any ideas?