WorkflowDesigner.Load Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Loads a workflow.
Overloads
Load(Object) |
Loads a workflow with the specified instance. |
Load(String) |
Loads a workflow from the XAML contained in the specified file. |
Load() |
Loads a workflow from the XAML contained in the Text property. |
Load(Object)
Loads a workflow with the specified instance.
public:
void Load(System::Object ^ instance);
public void Load (object instance);
member this.Load : obj -> unit
Public Sub Load (instance As Object)
Parameters
- instance
- Object
The root of the workflow to load.
Applies to
Load(String)
Loads a workflow from the XAML contained in the specified file.
public:
void Load(System::String ^ fileName);
public void Load (string fileName);
member this.Load : string -> unit
Public Sub Load (fileName As String)
Parameters
- fileName
- String
The file name of the XAML file.
Applies to
Load()
Loads a workflow from the XAML contained in the Text property.
public:
void Load();
public void Load ();
member this.Load : unit -> unit
Public Sub Load ()