DtsEventHandler.GetPackagePath メソッド
イベント ハンドラーが適用されるパッケージのパスを取得します。
名前空間: Microsoft.SqlServer.Dts.Runtime
アセンブリ: Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS.dll)
構文
'宣言
Public Function GetPackagePath As String
'使用
Dim instance As DtsEventHandler
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
戻り値
型: System.String
パッケージ パスを表す String です。
実装
IDTSPackagePath.GetPackagePath()
使用例
次のコード例では、パッケージの DtsEventHandler を作成し、パッケージのパスを表示します。
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 pkg = new Package();
DtsEventHandler dtsEH = (DtsEventHandler)pkg.EventHandlers.Add("OnError");
dtsEH.Executables.Add("STOCK:SendMailTask");
// View the package path for the DtsEventHandler container.
Console.WriteLine("Package Path of DtsEventHandler: {0}", dtsEH.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 pkg As Package = New Package()
Dim dtsEH As DtsEventHandler = CType(pkg.EventHandlers.Add("OnError"), DtsEventHandler)
dtsEH.Executables.Add("STOCK:SendMailTask")
' View the package path for the DtsEventHandler container.
Console.WriteLine("Package Path of DtsEventHandler: {0}", dtsEH.GetPackagePath())
End Sub
End Class
End Namespace
サンプル出力:
Package Path of DtsEventHandler: \Package.EventHandlers[OnError]