Application.ComponentStorePath 属性

Returns the path where pipeline components are stored. This property is read-only.

命名空间:  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
A String that indicates the location of the pipeline components.

示例

The following example returns the path of the pipeline components, which is usually 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

请参阅

参考

Application 类

Microsoft.SqlServer.Dts.Runtime 命名空间