Поделиться через


FileSystemTask Конструктор

Определение

Инициализирует новый экземпляр класса FileSystemTask.

public:
 FileSystemTask();
public FileSystemTask ();
Public Sub New ()

Примеры

Следующий пример кода создает новый FileSystemTask с помощью конструктора.

FileSystemTask myTask = new FileSystemTask();  
Dim myTask As FileSystemTask =  New FileSystemTask()  

Комментарии

В примере кода показано, как вызвать конструктор задачи. Однако в большинстве случаев вы создаете задачу в качестве члена пакета. Дополнительные сведения о приведения задачи см. в примечаниях.Add

Package pkg = new Package();  
Executable exec1 = pkg.Executables.Add("STOCK:FileSystemTask");  
TaskHost th = exec1 as TaskHost;  
// You can cast the InnerObject of the TaskHost  
// to the specific class.  
// For the code samples, that task properties are accessed using  
// the Properties of the TaskHost.  
// FileSystemTask myTask = th.InnerObject as FileSystemTask;  
Dim pkg As Package =  New Package()   
Dim exec1 As Executable =  pkg.Executables.Add("STOCK:FileSystemTask")   
Dim th As TaskHost =  exec1 as TaskHost   
' You can cast the InnerObject of the TaskHost  
' to the specific class.  
' For the code samples, that task properties are accessed using  
' the Properties of the TaskHost.  
' Dim myTask As FileSystemTask =  th.InnerObject as FileSystemTask  

Свойства и методы FileSystemTask доступны с помощью переменнойTaskHost. th

Применяется к