Application.ComponentStorePath プロパティ
パイプライン コンポーネントが格納されている場所のパスを返します。 このプロパティは読み取り専用です。
名前空間: Microsoft.SqlServer.Dts.Runtime
アセンブリ: Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS.dll)
構文
'宣言
Public ReadOnly Property ComponentStorePath As String
Get
'使用
Dim instance As Application
Dim value As String
value = instance.ComponentStorePath
public string ComponentStorePath { get; }
public:
property String^ ComponentStorePath {
String^ get ();
}
member ComponentStorePath : string
function get ComponentStorePath () : String
プロパティ値
型: System.String
パイプライン コンポーネントの場所を示す String です。
使用例
次の例では、通常 C:\Program Files\Microsoft SQL Server\100\DTS であるパイプライン コンポーネントのパスを返します。
class ApplicationTests
{
static void Main(string[] args)
{
Application app = new Application();
String pipelinecomp = app.ComponentStorePath;
Console.WriteLine(pipelinecomp);
}
}
Class ApplicationTests
Sub Main(ByVal args() As String)
Dim app As Application = New Application()
Dim pipelinecomp As String = app.ComponentStorePath
Console.WriteLine(pipelinecomp)
End Sub
End Class