IWorkflowDebugger.ScheduleTypeLoaded Method

Definition

Called when a new workflow type is loaded by the workflow runtime engine in the workflow host application.

public:
 void ScheduleTypeLoaded(Guid programId, Guid scheduleTypeId, System::String ^ assemblyFullName, System::String ^ fileName, System::String ^ md5Digest, bool isDynamic, System::String ^ scheduleNamespace, System::String ^ scheduleName, System::String ^ workflowMarkup);
public void ScheduleTypeLoaded (Guid programId, Guid scheduleTypeId, string assemblyFullName, string fileName, string md5Digest, bool isDynamic, string scheduleNamespace, string scheduleName, string workflowMarkup);
abstract member ScheduleTypeLoaded : Guid * Guid * string * string * string * bool * string * string * string -> unit
Public Sub ScheduleTypeLoaded (programId As Guid, scheduleTypeId As Guid, assemblyFullName As String, fileName As String, md5Digest As String, isDynamic As Boolean, scheduleNamespace As String, scheduleName As String, workflowMarkup As String)

Parameters

programId
Guid

An internally generated Guid associated with a WorkflowRuntime instance.

scheduleTypeId
Guid

An internally generated Guid associated with a workflow type.

assemblyFullName
String

A String containing the assembly name from which the workflow type was loaded.

fileName
String

A String containing the full path of the markup file corresponding to the workflow, or null if the workflow type was a code-only workflow.

md5Digest
String

A String containing the md5 hash code for the workflow markup definition, or null if the workflow type was a code-only workflow.

isDynamic
Boolean

A Boolean that indicates whether the workflow definition was modified dynamically.

scheduleNamespace
String

A String containing the fully qualified name of the workflow type.

scheduleName
String

A String containing the workflow type name.

workflowMarkup
String

A String containing the XAML serialized format of the workflow type.

Applies to