Metoda Sequence.GetPackagePath
Zwraca ścieżka kontener sekwencji jest częścią pakiet.
Przestrzeń nazw: Microsoft.SqlServer.Dts.Runtime
Zestaw: Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)
Składnia
'Deklaracja
Public Function GetPackagePath As String
'Użycie
Dim instance As Sequence
Dim returnValue As String
returnValue = instance.GetPackagePath()
public string GetPackagePath()
public:
virtual String^ GetPackagePath() sealed
abstract GetPackagePath : unit -> string
override GetPackagePath : unit -> string
public final function GetPackagePath() : String
Wartość zwracana
Typ: System.String
A ciąg zawiera ścieżka dla kontener sekwencji jest częścią pakiet.
Implementacje
Przykłady
Poniższy przykład kodu dodaje kontener sekwencji do pakiet, a następnie wyświetla ścieżka pakietów.
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
namespace Microsoft.SqlServer.SSIS.Samples
{
class Program
{
static void Main(string[] args)
{
Package package = new Package();
Sequence seq = (Sequence)package.Executables.Add("STOCK:SEQUENCE");
Console.WriteLine("Package path: {0}", seq.GetPackagePath());
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Namespace Microsoft.SqlServer.SSIS.Samples
Class Program
Shared Sub Main(ByVal args() As String)
Dim package As Package = New Package()
Dim seq As Sequence = CType(package.Executables.Add("STOCK:SEQUENCE"), Sequence)
Console.WriteLine("Package path: {0}", seq.GetPackagePath())
End Sub
End Class
End Namespace
Przykład danych wyjściowych:
Ścieżka pakietu: \Package\{97669D5A-BF92-4C75-927D-EAD6CFFCE651}