SPSocialFeedManager.GetFullThread method
Retrieves the specified thread with unabbreviated post and actor information.
Namespace: Microsoft.Office.Server.Social
Assembly: Microsoft.Office.Server.UserProfiles (in Microsoft.Office.Server.UserProfiles.dll)
'Declaration
Public Function GetFullThread ( _
threadId As String _
) As SPSocialThread
'Usage
Dim instance As SPSocialFeedManager
Dim threadId As String
Dim returnValue As SPSocialThread
returnValue = instance.GetFullThread(threadId)
public SPSocialThread GetFullThread(
string threadId
)
threadId
Type: System.StringThe unique identifier of the thread to retrieve. This can be the thread ID or the root post ID.
Type: Microsoft.Office.Server.Social.SPSocialThread
The specified thread with unabbreviated post and actor information.
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.