Compartilhar via


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.String

    A ID do destino postar para (consulte a seção de comentários para obter mais 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.

Ver também

Referência

SocialFeedManager classe

SocialFeedManager membros

Microsoft.SharePoint.Client.Social namespace