If true, errors encountered by the activity will not cause exceptions to be thrown by the activity. This API is currently not supported.
Namespace: Microsoft.ResourceManagement.Workflow.Activities
Assembly: Microsoft.ResourceManagement (in microsoft.resourcemanagement.dll)

Usage

Visual Basic
Dim instance As EmailNotificationActivity
Dim value As Boolean

value = instance.SuppressException

instance.SuppressException = value

Syntax

Visual Basic
Public Property SuppressException As Boolean
C#
public bool SuppressException { get; set; }
C++
public:
property bool SuppressException {
		bool get ();
		void set (bool value);
}
J#
/** @property */
public boolean get_SuppressException ()

/** @property */
public void set_SuppressException (boolean value)
JScript
public function get SuppressException () : boolean

public function set SuppressException (value : boolean)

Property Value

Returns a Boolean that indicates if the activity will catch any exceptions generated instead of throw them to the parent workflow.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Target Platforms

Windows 2008 x64 Edition

See Also