gpt4 book ai didi

c# - 如何在 C# 中调用 Sharepoint 分类法

转载 作者:行者123 更新时间:2023-11-30 23:25:14 26 4
gpt4 key购买 nike

我有以下 PowerShell,它返回存储在 SharePoint 托管元数据中的所有部门的列表:

Add-PSSnapin Microsoft.Sharepoint.Powershell

# Get the site collection
$sitecollection = Get-SPSite 'http://mysharepointsite/'

# Get the term store id
$taxsession = Get-SPTaxonomySession -Site $sitecollection

# Change to the requierd service name
$termstore = $taxsession.TermStores["Managed Metadata Service"]
$termstore.id

# Get the term set id
$termstoregroup = $termstore.Groups["People"]
# Change to your term set name
$termset = $termstoregroup.TermSets["Department"]
$termset.id

$departments = $termset.id.name

我需要使用 C# 实现相同的目的,但找不到适合我的东西。有谁知道这里的标准方法是什么?

我总是可以从我的 C# 应用程序内部开始一个 PowerShell session ,但这似乎是一种非常迂回的方式来做一些 C# 应该没有问题的事情。

最佳答案

我设法使用以下代码从 C# 执行此操作:

var spSite = new SPSite(@"http://mysharepointsite/");

var taxSession = new TaxonomySession(spSite);

var termStore = taxSession.TermStores["Managed Metadata Service"];
var termStoreGroup = termStore.Groups["People"];
var termSet = termStoreGroup.TermSets["Department"];

var deps = termSet.Terms;

foreach (var dep in deps)
{
MessageBox.Show(dep.Name);
}

这与主要问题中的几乎相同。

重要的是不要让此代码仅在安装了 SharePoint 的服务器上运行。在我的常规开发机器上运行时,我在第 1 行收到此异常:

An unhandled exception of type 'System.TypeInitializationException' occurred in Microsoft.SharePoint.dll

Additional information: The type initializer for 'Microsoft.SharePoint.CoreResource' threw an exception.

同样,我只能从 SharePoint 服务器的问题中运行 PowerShell 脚本 - 这很有意义,因为它们似乎使用相同的 .Net 对象,即 TaxonomySession


使用 this sample ,我还能够使用以下代码从我自己的机器检索部门列表:

var clientContext = new ClientContext("http://mysharepointsite/")
{ AuthenticationMode = ClientAuthenticationMode.Default};

var taxonomySession = TaxonomySession.GetTaxonomySession(clientContext);
var termStore = taxonomySession.GetDefaultSiteCollectionTermStore();
clientContext.Load(termStore,
store => store.Name,
store => store.Groups.Include(
group => group.Name,
group => group.TermSets.Include(
termSet => termSet.Name,
termSet => termSet.Terms.Include(
term => term.Name)
)
)
);
clientContext.ExecuteQuery();

if (taxonomySession != null)
{
if (termStore != null)
{
foreach (var termGroup in termStore.Groups)
{
foreach (var termSet in termGroup.TermSets)
{
foreach (var term in termSet.Terms)
{
MessageBox.Show(term.Name);
}
}
}
}
}

正如 Murray Foxcroft 提到的,这利用了客户端对象模型 (CSOM),它允许我们远程访问分类。

关于c# - 如何在 C# 中调用 Sharepoint 分类法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37440692/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com