Udostępnij za pośrednictwem


Metoda Application.GetDtsServerRoles

Zwraca tablicę ciągów , wyświetla listę ról, które są dostępne dla folderu.

Przestrzeń nazw:  Microsoft.SqlServer.Dts.Runtime
Zestaw:  Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)

Składnia

'Deklaracja
Public Function GetDtsServerRoles ( _
    sFolderPath As String, _
    sServerName As String _
) As String()
'Użycie
Dim instance As Application
Dim sFolderPath As String
Dim sServerName As String
Dim returnValue As String()

returnValue = instance.GetDtsServerRoles(sFolderPath, _
    sServerName)
public string[] GetDtsServerRoles(
    string sFolderPath,
    string sServerName
)
public:
array<String^>^ GetDtsServerRoles(
    String^ sFolderPath, 
    String^ sServerName
)
member GetDtsServerRoles : 
        sFolderPath:string * 
        sServerName:string -> string[] 
public function GetDtsServerRoles(
    sFolderPath : String, 
    sServerName : String
) : String[]

Parametry

  • sFolderPath
    Typ: System.String
    Folder role, których interesuje Cię.
  • sServerName
    Typ: System.String
    Nazwa wystąpienie działa Integration Services usługa.

Wartość zwracana

Typ: array<System.String[]
Tablica ciągów, każdy ciąg zawierający nazwę roli.

Przykłady

Poniższy przykład kodu pokazuje jak pobrać ról serwera, przy założeniu, że zostały zmienne zestaw aby odzwierciedlić z określonego serwera nazwę i ścieżka folderu.

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