Activity 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
주의
The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*
워크플로의 기본 문서 블록을 나타냅니다. Activity 는 모든 활동의 기본 클래스입니다.
public ref class Activity : System::Workflow::ComponentModel::DependencyObject
[System.Drawing.ToolboxBitmap(typeof(System.Workflow.ComponentModel.Activity), "Design.Resources.Activity.png")]
[System.Workflow.ComponentModel.Compiler.ActivityCodeGenerator(typeof(System.Workflow.ComponentModel.Compiler.ActivityCodeGenerator))]
[System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.ComponentModel.Compiler.ActivityValidator))]
[System.Workflow.ComponentModel.Serialization.RuntimeNameProperty("Name")]
public class Activity : System.Workflow.ComponentModel.DependencyObject
[System.Drawing.ToolboxBitmap(typeof(System.Workflow.ComponentModel.Activity), "Design.Resources.Activity.png")]
[System.Workflow.ComponentModel.Compiler.ActivityCodeGenerator(typeof(System.Workflow.ComponentModel.Compiler.ActivityCodeGenerator))]
[System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.ComponentModel.Compiler.ActivityValidator))]
[System.Workflow.ComponentModel.Serialization.RuntimeNameProperty("Name")]
[System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public class Activity : System.Workflow.ComponentModel.DependencyObject
[<System.Drawing.ToolboxBitmap(typeof(System.Workflow.ComponentModel.Activity), "Design.Resources.Activity.png")>]
[<System.Workflow.ComponentModel.Compiler.ActivityCodeGenerator(typeof(System.Workflow.ComponentModel.Compiler.ActivityCodeGenerator))>]
[<System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.ComponentModel.Compiler.ActivityValidator))>]
[<System.Workflow.ComponentModel.Serialization.RuntimeNameProperty("Name")>]
type Activity = class
inherit DependencyObject
[<System.Drawing.ToolboxBitmap(typeof(System.Workflow.ComponentModel.Activity), "Design.Resources.Activity.png")>]
[<System.Workflow.ComponentModel.Compiler.ActivityCodeGenerator(typeof(System.Workflow.ComponentModel.Compiler.ActivityCodeGenerator))>]
[<System.Workflow.ComponentModel.Compiler.ActivityValidator(typeof(System.Workflow.ComponentModel.Compiler.ActivityValidator))>]
[<System.Workflow.ComponentModel.Serialization.RuntimeNameProperty("Name")>]
[<System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")>]
type Activity = class
inherit DependencyObject
Public Class Activity
Inherits DependencyObject
- 상속
- 파생
- 특성
예제
이 예제에서는 전자 메일을 보내는 활동을 정의합니다. 작업은 구현에서 종속성 속성을 사용하는 하나의 속성 Subject
를 정의합니다. 다른 속성도 비슷한 방식으로 정의할 수 있습니다. 메서드는 Execute
전자 메일을 보내기 위한 논리를 제공하기 위해 재정의됩니다. 전체 예제는 Email 활동 보내기 샘플을 참조하세요.
public class SendEmail : Activity
{
public static readonly DependencyProperty SubjectProperty =
DependencyProperty.Register("Subject", typeof(string), typeof(SendEmail));
public string Subject
{
get { return base.GetValue(SubjectProperty) as string; }
set { base.SetValue(SubjectProperty, value); }
}
// Define other properties...
protected override ActivityExecutionStatus Execute(ActivityExecutionContext executionContext)
{
// Logic to send the email goes here...
return ActivityExecutionStatus.Closed;
}
}
설명
참고
이 자료에서는 더 이상 사용되지 않는 형식과 네임스페이스에 대해 설명합니다. 자세한 내용은 Deprecated Types in Windows Workflow Foundation 4.5(Windows Workflow Foundation 4.5에서 사용되지 않는 형식)를 참조하세요.
는 Activity 워크플로의 기본 구성 요소입니다. 는 Activity 활동의 런타임 동작을 정의하는 실행 논리와 함께 모든 클래스와 같은 속성 및 이벤트 집합을 정의합니다. 추가 구성 요소 집합을 와 Activity연결할 수 있습니다. 여기에는 유효성 검사기, 코드 생성기, 사용자 지정 직렬 변환기 및 디자이너가 포함되지만 이에 국한되지는 않습니다.
모든 활동은 기본 클래스에 정의된 공통 속성 집합을 Activity 공유합니다. 각각 Activity 은 이 클래스를 확장하여 요구 사항에 따라 자체 추가 속성을 선언할 수 있습니다. Activity 에서 DependencyObject파생되므로 속성은 표준 CLR 속성 및 종속성 속성으로 정의할 수 있습니다.
의 Activity 실행 논리는 와 Activity 워크플로 런타임 사이에 존재하는 계약을 이행합니다. 를 사용하는 워크플로 개발자가 동작 방식을 알 수 있도록 기능적 측면에서 의 Activity 실행 논리를 Activity 문서화해야 합니다. 실행 논리는 워크플로 런타임과 Activity사이에 엄격하게 존재하는 계약의 일부이므로 워크플로에 활동을 포함하는 워크플로 개발자가 실행 논리 자체를 숨깁니다.
생성자
Activity() |
사용되지 않음.
Activity 클래스의 새 인스턴스를 초기화합니다. |
Activity(String) |
사용되지 않음.
|
필드
ActivityContextGuidProperty |
사용되지 않음.
DependencyProperty와 연결된 Guid의 ActivityExecutionContext를 나타내는 Activity입니다. |
CancelingEvent |
사용되지 않음.
DependencyProperty 이벤트를 대상으로 하는 Canceling를 나타냅니다. |
ClosedEvent |
사용되지 않음.
DependencyProperty 이벤트를 대상으로 하는 Closed를 나타냅니다. |
CompensatingEvent |
사용되지 않음.
DependencyProperty 이벤트를 대상으로 하는 Compensating를 나타냅니다. |
ExecutingEvent |
사용되지 않음.
활동이 실행될 때 발생하는 DependencyProperty 이벤트를 대상으로 하는 Executing를 나타냅니다. |
FaultingEvent |
사용되지 않음.
DependencyProperty 이벤트를 나타내는 Faulting입니다. |
StatusChangedEvent |
사용되지 않음.
DependencyProperty 이벤트를 대상으로 하는 StatusChanged를 나타냅니다. |
속성
Description |
사용되지 않음.
Activity에 대한 사용자 정의 설명을 가져오거나 설정합니다. |
DesignMode |
사용되지 않음.
이 인스턴스가 디자인 모드 또는 런타임 모드에 있는지 나타내는 값을 가져옵니다. (다음에서 상속됨 DependencyObject) |
Enabled |
사용되지 않음.
실행 및 유효성 검사에 이 인스턴스를 사용할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다. |
ExecutionResult |
사용되지 않음.
이 인스턴스를 실행하려는 마지막 시도의 ActivityExecutionResult를 가져옵니다. |
ExecutionStatus |
사용되지 않음.
이 인스턴스의 현재 ActivityExecutionStatus를 가져옵니다. |
IsDynamicActivity |
사용되지 않음.
활동이 워크플로 인스턴스의 기본 ActivityExecutionContext 내에서 실행 중인지 여부에 대한 정보를 가져옵니다. |
Name |
사용되지 않음.
이 인스턴스의 이름을 가져오거나 설정합니다. 이 이름은 워크플로 프로젝트에 사용되는 프로그래밍 언어의 변수 명명 규칙을 따라야 합니다 |
Parent |
사용되지 않음.
이 CompositeActivity이 들어 있는 Activity를 가져옵니다. |
ParentDependencyObject |
사용되지 않음.
DependencyObject 그래프의 부모 DependencyObject를 가져옵니다. (다음에서 상속됨 DependencyObject) |
QualifiedName |
사용되지 않음.
활동의 정규화된 이름을 가져옵니다. 정규화된 활동 이름은 워크플로 인스턴스에서 항상 고유합니다. |
Site |
사용되지 않음.
Site의 DependencyObject 구성 요소에 대한 참조를 가져오거나 설정합니다. (다음에서 상속됨 DependencyObject) |
UserData |
사용되지 않음.
사용자 지정 데이터를 이 클래스 인스턴스와 연결하는 IDictionary를 가져옵니다. (다음에서 상속됨 DependencyObject) |
WorkflowInstanceId |
사용되지 않음.
인스턴스와 연결된 Guid를 가져옵니다. |
메서드
이벤트
Canceling |
사용되지 않음.
활동 실행이 취소될 때 발생합니다. |
Closed |
사용되지 않음.
Activity에서 실행을 완료했을 때 발생합니다. |
Compensating |
사용되지 않음.
Activity에서 보정 메서드를 실행할 때 발생합니다. |
Executing |
사용되지 않음.
Activity가 실행될 때 발생합니다. |
Faulting |
사용되지 않음.
인스턴스를 실행하는 동안 예외가 발생하면 이 이벤트가 발생합니다. |
StatusChanged |
사용되지 않음.
실행 중인 ActivityExecutionStatus의 Activity가 변경될 때 발생합니다. |
명시적 인터페이스 구현
IComponent.Disposed |
사용되지 않음.
구성 요소의 Disposed 이벤트를 처리하는 메서드를 나타냅니다. (다음에서 상속됨 DependencyObject) |
적용 대상
.NET