SocialFeedManager.CreatePost método
Cria uma microblog postagem ou responder.
Namespace: Microsoft.SharePoint.Client.Social
Assemblies: Microsoft.SharePoint.Client.UserProfiles.Silverlight (em Microsoft.SharePoint.Client.UserProfiles.Silverlight.dll); Microsoft.SharePoint.Client.UserProfiles.Phone (em Microsoft.SharePoint.Client.UserProfiles.Phone.dll) Microsoft.SharePoint.Client.UserProfiles (em Microsoft.SharePoint.Client.UserProfiles.dll)
Sintaxe
'Declaração
Public Function CreatePost ( _
targetId As String, _
creationData As SocialPostCreationData _
) As ClientResult(Of SocialThread)
'Uso
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
)
Parâmetros
targetId
Tipo: System.StringA ID do destino postar para (consulte a seção de comentários para obter mais informações).
creationData
Tipo: Microsoft.SharePoint.Client.Social.SocialPostCreationDataA nova postagem do conteúdo e relacionados informações.
Valor retornado
Tipo: Microsoft.SharePoint.Client.ClientResult<SocialThread>
Um resumo do thread novo ou modificado.
Comentários
O valor do parâmetro targetId pode ser um destes procedimentos:
Nulo para publicar uma postagem de raiz para o usuário atual do feed.
A ID de thread de uma postagem para responder.
A URL de um site de feed para postar (por exemplo: http://<server>/<teamSite>/newsfeed.aspx).
Para um código exemplo que mostra como publicar uma postagem e uma resposta, consulte How to: Create and delete posts and retrieve the social feed by using the .NET client object model.