9 references to SuspendActivity
System.Workflow.ComponentModel (7)
AuthoringOM\Serializer\WorkflowMarkupSerializerMapping.cs (2)
49
WorkflowMarkupSerializerMapping.wellKnownTypes.Add(typeof(
SuspendActivity
).Name, typeof(
SuspendActivity
));
AuthoringOM\Suspend.cs (5)
24
[ToolboxBitmap(typeof(
SuspendActivity
), "Resources.Suspend.png")]
30
public static readonly DependencyProperty ErrorProperty = DependencyProperty.Register("Error", typeof(string), typeof(
SuspendActivity
));
86
SuspendActivity
suspend = obj as
SuspendActivity
;
88
throw new ArgumentException(SR.GetString(SR.Error_UnexpectedArgumentType, typeof(
SuspendActivity
).FullName), "obj");
System.Workflow.Runtime (2)
System\Activities\Statements\Interop.cs (2)
1266
else if (interopBodyType == typeof(System.Workflow.ComponentModel.
SuspendActivity
))
1422
else if (activity is System.Workflow.ComponentModel.
SuspendActivity
)