如何在C#中调用Sharepoint分类

时间:2016-05-25 14:49:58

标签: c# powershell sharepoint-2013 taxonomy

我有以下一点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会话,但这似乎是一种非常迂回的做法,C#应该没有任何问题。

3 个答案:

答案 0 :(得分:1)

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

Like

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

重要的是,此代码不会仅在安装了SharePoint的服务器上运行。在我的常规开发机器上运行时,我在第1行得到了这个例外:

  

Microsoft.SharePoint.dll中出现未处理的“System.TypeInitializationException”类型异常

     

其他信息:“Microsoft.SharePoint.CoreResource”的类型初始化程序引发了异常。

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

使用this sample,我还可以使用以下代码从我自己的计算机中检索部门列表

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);
}

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

答案 1 :(得分:1)

在SharePoint世界中,服务器和客户端库的名称相同,即。 Microsoft.Sharepoint.dll但具有不同的实现,使事情混乱并给出您遇到的错误。如果您需要从服务器运行,那么您可以继续使用您拥有的内容。如果您需要远程运行,那么您需要移植到我的答案中提供的CSOM(客户端对象模型)。

答案 2 :(得分:0)

它将泄漏。.SPSite实现IDisposbale接口...由于创建了资源,因此需要对其进行处理。.最简单的方法是使用using构造。

using(SPSite site = new SPSite("http://server"))
{
}