SocialFeedManager.GetFullThread method
Retrieves the specified thread with unabbreviated post and actor information.
Namespace: Microsoft.SharePoint.Client.Social
Assembly: Microsoft.SharePoint.Client.UserProfiles (in Microsoft.SharePoint.Client.UserProfiles.dll)
Syntax
'Declaration
Public Function GetFullThread ( _
threadId As String _
) As ClientResult(Of SocialThread)
'Usage
Dim instance As SocialFeedManager
Dim threadId As String
Dim returnValue As ClientResult(Of SocialThread)
returnValue = instance.GetFullThread(threadId)
public ClientResult<SocialThread> GetFullThread(
string threadId
)
Parameters
threadId
Type: System.StringThe unique identifier of the thread to retrieve. This can be the ID of the thread or root post (they have the same value).
Return value
Type: Microsoft.SharePoint.Client.ClientResult<SocialThread>
The specified thread with unabbreviated post and actor information.
Remarks
To optimize performance, the server typically returns a digest thread that contains only the two most recent replies. If you want to get all the replies in the thread, you can call GetFullThread and pass in the ID of the returned digest thread.