ThrowActivity.FaultType Property
Gets or sets the type of exception that should be thrown by the ThrowActivity.
Namespace: System.Workflow.ComponentModel
Assembly: System.Workflow.ComponentModel (in System.Workflow.ComponentModel.dll)
The following code shows the usage of a single throw activity within a workflow to implement exception handling. This example shows setting the FaultType to null. This code example is part of the Throw SDK sample and is from the ThrowWorkflow.cs file. For more information, see Using 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; }
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.