다음을 통해 공유


MessageQueueTask 생성자

정의

MessageQueueTask 클래스의 새 인스턴스를 초기화합니다.

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

예제

다음 코드 예제에서는 새 메시지 큐 작업을 만듭니다.

MessageQueueTask myMSMQ = new MessageQueueTask();  
Dim myMSMQ As MessageQueueTask =  New MessageQueueTask()  

설명

코드 샘플은 작업 생성자를 호출하는 방법을 보여줍니다. 그러나 대부분의 경우 태스크를 패키지의 멤버로 만듭니다. 작업 캐스팅에 대한 자세한 내용은 의 발언을 참조하세요 Add.

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

변수thBulkInsertTask 사용하여 속성 및 메서드를 TaskHost 사용할 수 있습니다.

적용 대상