Application.GetDtsServerRoles(String, String) 方法

定义

返回列出文件夹的可用角色的字符串数组。

public:
 cli::array <System::String ^> ^ GetDtsServerRoles(System::String ^ sFolderPath, System::String ^ sServerName);
public string[] GetDtsServerRoles (string sFolderPath, string sServerName);
member this.GetDtsServerRoles : string * string -> string[]
Public Function GetDtsServerRoles (sFolderPath As String, sServerName As String) As String()

参数

sFolderPath
String

您对其角色感兴趣的文件夹。

sServerName
String

正在运行 Integration Services 服务的实例的名称。

返回

String[]

一个字符串数组,每个字符串都包含一个角色名称。

示例

下面的代码示例演示如何检索服务器角色,前提是变量已设置为反映特定的服务器名称和文件夹路径。

string[] availableRoles = app.GetDtsServerRoles(folderPath, myServerName);   
Dim availableRoles() As String =  app.GetDtsServerRoles(folderPath,myServerName)  

适用于