如何列出项目的可用标签

本文关键字:标签 何列出 项目 | 更新日期: 2023-09-27 17:55:26

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

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

任何帮助,不胜感激。

如何列出项目的可用标签

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

我在Visual Studio Project的引用下添加了两个dll(VaultLib.dll和VaultClientIntegrationLib.dll),并添加了2个使用语句(在类中)

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 
}