如何列出项目的可用标签?

How do I list the available labels of a Project?

这是我第一次使用 Vault Client API 功能开发 .NET winforms 应用程序。 我想使用 Vault Client API 来获取每个项目的标签列表。

我在 VaultClientIntegrationLib.dll 中找到了 ServerOperations.ProcessCommandFindLabels() 方法,但我不知道参数应该是什么样子才能获得成功的结果。

感谢任何帮助。

经过多次尝试,我可以通过运行下面的代码获取项目的所有标签。

我在 Visual Studio 项目中的引用下添加了两个 dll(VaultLib.dll 和 VaultClientIntegrationLib.dll)并添加了 2 个 using 语句(在 class 中)

using VaultLib;
using VaultClientIntegrationLib;

我在静态方法中添加了以下代码

ServerOperations.client.LoginOptions.URL = url;
ServerOperations.client.LoginOptions.User = user;
ServerOperations.client.LoginOptions.Password = pass;
ServerOperations.client.LoginOptions.Repository = rep;
ServerOperations.Login();
ServerOperations.client.AutoCommit = true;

string prjPath = "$/projectpath";
VaultLabelItemX[] arLabelItems = null;

int nRetCode = ServerOperations.ProcessCommandFindLabels("*", prjPath, false, 1000, true, true, VaultFindInFilesDefine.PatternMatch.Wildcard, out arLabelItems);

MessageBox.Show(arLabelItems.Count().ToString()); // Print how much labels found

foreach (var item in arLabelItems)
{
   MessageBox.Show(arLabelItems[i].Label.ToString()); // Show Label 
}