ThrowActivity 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
주의
The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*
예외 throw를 모델링합니다. 이 클래스는 상속될 수 없습니다.
public ref class ThrowActivity sealed : System::Workflow::ComponentModel::Activity, System::Workflow::ComponentModel::Design::ITypeFilterProvider, System::Workflow::ComponentModel::IDynamicPropertyTypeProvider
[System.Drawing.ToolboxBitmap(typeof(System.Workflow.ComponentModel.ThrowActivity), "Resources.Throw.png")]
public sealed class ThrowActivity : System.Workflow.ComponentModel.Activity, System.Workflow.ComponentModel.Design.ITypeFilterProvider, System.Workflow.ComponentModel.IDynamicPropertyTypeProvider
[System.Drawing.ToolboxBitmap(typeof(System.Workflow.ComponentModel.ThrowActivity), "Resources.Throw.png")]
[System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public sealed class ThrowActivity : System.Workflow.ComponentModel.Activity, System.Workflow.ComponentModel.Design.ITypeFilterProvider, System.Workflow.ComponentModel.IDynamicPropertyTypeProvider
[<System.Drawing.ToolboxBitmap(typeof(System.Workflow.ComponentModel.ThrowActivity), "Resources.Throw.png")>]
type ThrowActivity = class
inherit Activity
interface ITypeFilterProvider
interface IDynamicPropertyTypeProvider
[<System.Drawing.ToolboxBitmap(typeof(System.Workflow.ComponentModel.ThrowActivity), "Resources.Throw.png")>]
[<System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")>]
type ThrowActivity = class
inherit Activity
interface ITypeFilterProvider
interface IDynamicPropertyTypeProvider
Public NotInheritable Class ThrowActivity
Inherits Activity
Implements IDynamicPropertyTypeProvider, ITypeFilterProvider
- 상속
- 특성
- 구현
예제
다음 코드에서는 워크플로에 단일 throw 활동을 사용하여 예외 처리를 구현하는 방법을 보여 줍니다. 이 코드 예제는 ThrowWorkflow.cs 파일에 있는 Throw SDK 샘플의 일부입니다. 자세한 내용은 Throw를 사용 하 여입니다.
public sealed partial class ThrowWorkflow : SequentialWorkflowActivity
{
[System.Diagnostics.DebuggerNonUserCode()]
private void InitializeComponent()
{
this.CanModifyActivities = true;
System.Workflow.ComponentModel.ActivityBind activitybind1 = new System.Workflow.ComponentModel.ActivityBind();
this.throwActivity1 = new System.Workflow.ComponentModel.ThrowActivity();
activitybind1.Name = "ThrowWorkflow";
activitybind1.Path = "ThrownException";
//
// throwActivity1
//
this.throwActivity1.Name = "throwActivity1";
this.throwActivity1.SetBinding(System.Workflow.ComponentModel.ThrowActivity.FaultProperty, ((System.Workflow.ComponentModel.ActivityBind)(activitybind1)));
//
// ThrowWorkflow
//
this.Activities.Add(this.throwActivity1);
this.Name = "ThrowWorkflow";
this.CanModifyActivities = false;
}
private Exception thrownExceptionValue = new System.Exception("My Exception Message.");
public Exception ThrownException
{
get { return thrownExceptionValue; }
set { thrownExceptionValue = value; }
}
private ThrowActivity throwActivity1;
}
Partial Public NotInheritable Class ThrowWorkflow
Inherits SequentialWorkflowActivity
<System.Diagnostics.DebuggerNonUserCode()> _
Private Sub InitializeComponent()
Me.CanModifyActivities = True
Dim activitybind1 As New System.Workflow.ComponentModel.ActivityBind()
Me.throwActivity1 = New System.Workflow.ComponentModel.ThrowActivity()
activitybind1.Name = "ThrowWorkflow"
activitybind1.Path = "ThrownException"
'
' throwActivity1
'
Me.throwActivity1.Name = "throwActivity1"
Me.throwActivity1.SetBinding(System.Workflow.ComponentModel.ThrowActivity.FaultProperty, activitybind1)
'
' ThrowWorkflow
'
Me.Activities.Add(Me.throwActivity1)
Me.Name = "ThrowWorkflow"
Me.CanModifyActivities = False
End Sub
Private thrownExceptionValue As New System.Exception("My Exception Message.")
Public Property ThrownException() As Exception
Get
Return thrownExceptionValue
End Get
Set(ByVal value As Exception)
thrownExceptionValue = value
End Set
End Property
Private throwActivity1 As ThrowActivity
End Class
설명
참고
이 자료에서는 더 이상 사용되지 않는 형식과 네임스페이스에 대해 설명합니다. 자세한 내용은 Deprecated Types in Windows Workflow Foundation 4.5(Windows Workflow Foundation 4.5에서 사용되지 않는 형식)를 참조하세요.
ThrowActivity는 예외 throw의 선언적 모델링을 허용하는 데 사용됩니다. ThrowActivity는 코드 병행 처리기에서 표시된 예외를 throw하는 CodeActivity 활동과 기능이 같습니다.
생성자
ThrowActivity() |
사용되지 않음.
ThrowActivity 클래스의 새 인스턴스를 초기화합니다. |
ThrowActivity(String) |
사용되지 않음.
ThrowActivity 클래스의 새 인스턴스를 초기화하고 해당 이름을 초기화합니다. |
필드
FaultProperty |
사용되지 않음.
이 인스턴스에 대한 DependencyProperty 속성을 나타내는 Fault입니다. |
FaultTypeProperty |
사용되지 않음.
이 인스턴스에 대한 DependencyProperty 속성을 나타내는 FaultType입니다. |
속성
Description |
사용되지 않음.
Activity에 대한 사용자 정의 설명을 가져오거나 설정합니다. (다음에서 상속됨 Activity) |
DesignMode |
사용되지 않음.
이 인스턴스가 디자인 모드 또는 런타임 모드에 있는지 나타내는 값을 가져옵니다. (다음에서 상속됨 DependencyObject) |
Enabled |
사용되지 않음.
실행 및 유효성 검사에 이 인스턴스를 사용할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Activity) |
ExecutionResult |
사용되지 않음.
이 인스턴스를 실행하려는 마지막 시도의 ActivityExecutionResult를 가져옵니다. (다음에서 상속됨 Activity) |
ExecutionStatus |
사용되지 않음.
이 인스턴스의 현재 ActivityExecutionStatus를 가져옵니다. (다음에서 상속됨 Activity) |
Fault |
사용되지 않음.
ThrowActivity에서 throw되어야 하는 예외 개체를 가져오거나 설정합니다. |
FaultType |
사용되지 않음.
ThrowActivity에서 throw되어야 하는 예외 형식을 가져오거나 설정합니다. |
IsDynamicActivity |
사용되지 않음.
활동이 워크플로 인스턴스의 기본 ActivityExecutionContext 내에서 실행 중인지 여부에 대한 정보를 가져옵니다. (다음에서 상속됨 Activity) |
Name |
사용되지 않음.
이 인스턴스의 이름을 가져오거나 설정합니다. 이 이름은 워크플로 프로젝트에 사용되는 프로그래밍 언어의 변수 명명 규칙을 따라야 합니다 (다음에서 상속됨 Activity) |
Parent |
사용되지 않음.
이 CompositeActivity이 들어 있는 Activity를 가져옵니다. (다음에서 상속됨 Activity) |
ParentDependencyObject |
사용되지 않음.
DependencyObject 그래프의 부모 DependencyObject를 가져옵니다. (다음에서 상속됨 DependencyObject) |
QualifiedName |
사용되지 않음.
활동의 정규화된 이름을 가져옵니다. 정규화된 활동 이름은 워크플로 인스턴스에서 항상 고유합니다. (다음에서 상속됨 Activity) |
Site |
사용되지 않음.
Site의 DependencyObject 구성 요소에 대한 참조를 가져오거나 설정합니다. (다음에서 상속됨 DependencyObject) |
UserData |
사용되지 않음.
사용자 지정 데이터를 이 클래스 인스턴스와 연결하는 IDictionary를 가져옵니다. (다음에서 상속됨 DependencyObject) |
WorkflowInstanceId |
사용되지 않음.
인스턴스와 연결된 Guid를 가져옵니다. (다음에서 상속됨 Activity) |
메서드
이벤트
Canceling |
사용되지 않음.
활동 실행이 취소될 때 발생합니다. (다음에서 상속됨 Activity) |
Closed |
사용되지 않음.
Activity에서 실행을 완료했을 때 발생합니다. (다음에서 상속됨 Activity) |
Compensating |
사용되지 않음.
Activity에서 보정 메서드를 실행할 때 발생합니다. (다음에서 상속됨 Activity) |
Executing |
사용되지 않음.
Activity가 실행될 때 발생합니다. (다음에서 상속됨 Activity) |
Faulting |
사용되지 않음.
인스턴스를 실행하는 동안 예외가 발생하면 이 이벤트가 발생합니다. (다음에서 상속됨 Activity) |
StatusChanged |
사용되지 않음.
실행 중인 ActivityExecutionStatus의 Activity가 변경될 때 발생합니다. (다음에서 상속됨 Activity) |
명시적 인터페이스 구현
IComponent.Disposed |
사용되지 않음.
구성 요소의 Disposed 이벤트를 처리하는 메서드를 나타냅니다. (다음에서 상속됨 DependencyObject) |
IDynamicPropertyTypeProvider.GetAccessType(IServiceProvider, String) |
사용되지 않음.
지정된 속성의 액세스 형식을 반환합니다. |
IDynamicPropertyTypeProvider.GetPropertyType(IServiceProvider, String) |
사용되지 않음.
지정된 속성의 Type을 반환합니다. |
ITypeFilterProvider.CanFilterType(Type, Boolean) |
사용되지 않음.
지정된 Type을 필터링할 수 있는지 여부를 나타내는 값을 반환합니다. |
ITypeFilterProvider.FilterDescription |
사용되지 않음.
클래스 브라우저 대화 상자에 표시할 필터 설명을 가져옵니다. |
적용 대상
.NET