Aracılığıyla paylaş


Application.TaskInfos Özelliği

Döndürür bir TaskInfos koleksiyon içeren TaskInfo nesneler.Bu özellik salt okunurdur.

Ad Alanı:  Microsoft.SqlServer.Dts.Runtime
Derleme:  Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS içinde.dll)

Sözdizimi

'Bildirim
Public ReadOnly Property TaskInfos As TaskInfos
    Get
'Kullanım
Dim instance As Application
Dim value As TaskInfos

value = instance.TaskInfos
public TaskInfos TaskInfos { get; }
public:
property TaskInfos^ TaskInfos {
    TaskInfos^ get ();
}
member TaskInfos : TaskInfos
function get TaskInfos () : TaskInfos

Özellik Değeri

Tür: Microsoft.SqlServer.Dts.Runtime.TaskInfos
A TaskInfos koleksiyon tüm içeren TaskInfo nesneleri uygulama.

Örnekler

Aşağıdaki kod örneği üzerinden numaralandırmak gösterilmiştir TaskInfos koleksiyon ve yazdırma dosyasının adını ve ilişkili onun açıklaması.

class ApplicationTests
    {
        static void Main(string[] args)
        {
            Application app = new Application();

            TaskInfos tis = app.TaskInfos;
            foreach (TaskInfo x in tis)
                Console.WriteLine(x.FileName + "..." + x.Description);
        }
    }
class ApplicationTests
    Sub Main(ByVal args() As String)
        Dim app As Application =  New Application() 
        Dim tis As TaskInfos =  app.TaskInfos 
        For Each x As TaskInfo In tis
            Console.WriteLine(x.FileName + "..." + x.Description)
        Next
    End Sub
End Class

Örnek Çıktı:

C:\Program Files\Microsoft SQL Server\100\DTS\Binn\ExecPackageTask.dll...The Execute Package task enables a DTS package to run other packages as part of a workflow.

C:\Program Files\Microsoft SQL Server\100\DTS\Binn\DTSPipeline.dll...The Data Flow task encapsulates the data flow engine that moves data between sources and destinations providing the facility to transform, cleanse, and modify data as it is moved.

Microsoft.SqlServer.ActiveXScriptTask...Parses and executes an ActiveX script.

Microsoft.SqlServer.ASTasks...Provides ability to execute DDL query statements against an Analysis Services server.

Microsoft.SqlServer.BulkInsertTask...Copies data from a file into database

Microsoft.SqlServer.DmQueryTask...Execute data mining query

Microsoft.SqlServer.ExecProcTask...Executes Win32 executables

Microsoft.SqlServer.FileSystemTask...Perform file system operations such as copying and deleting files

Microsoft.SqlServer.FtpTask...Perform FTP operations such as sending and receiving files