SocialFeed.Threads 属性
处理图像呈现形式的元数据。
命名空间: Microsoft.SharePoint.Client.Social
程序集: Microsoft.SharePoint.Client.UserProfiles.Silverlight(位于 Microsoft.SharePoint.Client.UserProfiles.Silverlight.dll 中); Microsoft.SharePoint.Client.UserProfiles.Phone(位于 Microsoft.SharePoint.Client.UserProfiles.Phone.dll 中) Microsoft.SharePoint.Client.UserProfiles(位于 Microsoft.SharePoint.Client.UserProfiles.dll 中)
语法
声明
Public ReadOnly Property Threads As SocialThread()
Get
用法
Dim instance As SocialFeed
Dim value As SocialThread()
value = instance.Threads
public SocialThread[] Threads { get; }
属性值
类型:[]
示例
下面的代码循环访问数据源中的线程。获取线程标识符和根文章的文本,并检查每个线程是否有CanReply属性。
请参阅如何:了解通过使用 SharePoint 2013 中的 .NET 客户端对象模型读取和写入好友动态订阅源和如何:使用 SharePoint 2013 中的 .NET 客户端对象模型创建和删除帖子以及检索好友动态订阅源处理源的完整代码示例。
for (int i = 0; i < feed.Value.Threads.Length; i++)
{
SocialThread thread = feed.Value.Threads[i];
string threadId = thread.Id;
string postText = thread.RootPost.Text;
if (thread.Attributes.HasFlag(SocialThreadAttributes.CanReply))
{
Console.WriteLine(("\t" + threadId + " " + postText);
}
}