SocialFeedManager.GetMentions method
Gets a feed of threads that mention the current user.
Namespace: Microsoft.SharePoint.Client.Social
Assembly: Microsoft.SharePoint.Client.UserProfiles (in Microsoft.SharePoint.Client.UserProfiles.dll)
Syntax
'Declaration
Public Function GetMentions ( _
clearUnreadMentions As Boolean, _
options As SocialFeedOptions _
) As ClientResult(Of SocialFeed)
'Usage
Dim instance As SocialFeedManager
Dim clearUnreadMentions As Boolean
Dim options As SocialFeedOptions
Dim returnValue As ClientResult(Of SocialFeed)
returnValue = instance.GetMentions(clearUnreadMentions, _
options)
public ClientResult<SocialFeed> GetMentions(
bool clearUnreadMentions,
SocialFeedOptions options
)
Parameters
clearUnreadMentions
Type: System.Booleantrue to clear the current user's unread mention count, otherwise false.
options
Type: Microsoft.SharePoint.Client.Social.SocialFeedOptionsFeed retrieval options such as date range and sort order.
Return value
Type: Microsoft.SharePoint.Client.ClientResult<SocialFeed>
The requested feed based on the specified parameters.