WorkflowDesignerLoader.InDebugMode Property

Definition

Gets a value that indicates whether the workflow should be loaded in debug mode.

public:
 virtual property bool InDebugMode { bool get(); };
public virtual bool InDebugMode { get; }
member this.InDebugMode : bool
Public Overridable ReadOnly Property InDebugMode As Boolean

Property Value

true if the workflow should be loaded in debug mode; otherwise, false. The default is false.

Examples

The following method determines whether the workflow designer is locked by the debugger if the InDebugMode property of the current WorkflowDesignerLoader returns true.

public bool IsDesignerLocked
{
    get
    {
        WorkflowDesignerLoader loader = GetService(typeof(WorkflowDesignerLoader)) as WorkflowDesignerLoader;
        if (loader != null && loader.InDebugMode)
            return true;

        return false;
    }
}
Public ReadOnly Property IsDesignerLocked() As Boolean
    Get
        Dim loader As WorkflowDesignerLoader = CType(GetService(GetType(WorkflowDesignerLoader)), WorkflowDesignerLoader)
        If loader IsNot Nothing And loader.InDebugMode Then
            Return True
        End If

        Return False
    End Get
End Property

Applies to