SocialFeedManager.CreatePost - Méthode
Crée une microblog publication ou répondez.
Espace de noms : Microsoft.SharePoint.Client.Social
Assemblys : Microsoft.SharePoint.Client.UserProfiles.Silverlight (dans Microsoft.SharePoint.Client.UserProfiles.Silverlight.dll); Microsoft.SharePoint.Client.UserProfiles.Phone (dans Microsoft.SharePoint.Client.UserProfiles.Phone.dll) Microsoft.SharePoint.Client.UserProfiles (dans Microsoft.SharePoint.Client.UserProfiles.dll)
Syntaxe
'Déclaration
Public Function CreatePost ( _
targetId As String, _
creationData As SocialPostCreationData _
) As ClientResult(Of SocialThread)
'Utilisation
Dim instance As SocialFeedManager
Dim targetId As String
Dim creationData As SocialPostCreationData
Dim returnValue As ClientResult(Of SocialThread)
returnValue = instance.CreatePost(targetId, _
creationData)
public ClientResult<SocialThread> CreatePost(
string targetId,
SocialPostCreationData creationData
)
Paramètres
targetId
Type : System.StringID de la cible à publier pour (voir la section Remarques pour plus d'informations).
creationData
Type : Microsoft.SharePoint.Client.Social.SocialPostCreationDataLa nouvelle publication du contenu et connexes informations.
Valeur renvoyée
Type : Microsoft.SharePoint.Client.ClientResult<SocialThread>
Résumé du thread nouvellement créé ou modifié.
Remarques
La valeur du paramètre targetId peut être une des opérations suivantes :
null pour publier un billet racine à l'utilisateur actuel du flux.
ID de thread de la publication pour répondre à.
L'URL d'un site de flux à publier des billets dans (par exemple : http://<server>/<teamSite>/newsfeed.aspx).
Pour obtenir un exemple de code qui montre comment publier un billet et réponse, voir How to: Create and delete posts and retrieve the social feed by using the .NET client object model.