WorkflowLoaderService.CreateInstance 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.
Creates a new workflow instance by using the specified workflow Type.
Overloads
CreateInstance(Type) |
Creates a new workflow instance by using the specified workflow Type. |
CreateInstance(XmlReader, XmlReader) |
Creates a workflow instance by using the specified XmlReader. |
CreateInstance(Type)
Creates a new workflow instance by using the specified workflow Type.
protected public:
abstract System::Workflow::ComponentModel::Activity ^ CreateInstance(Type ^ workflowType);
protected internal abstract System.Workflow.ComponentModel.Activity CreateInstance (Type workflowType);
abstract member CreateInstance : Type -> System.Workflow.ComponentModel.Activity
Protected Friend MustOverride Function CreateInstance (workflowType As Type) As Activity
Parameters
Returns
A WorkflowInstance object that represents the workflow instance created.
Applies to
CreateInstance(XmlReader, XmlReader)
Creates a workflow instance by using the specified XmlReader.
protected public:
abstract System::Workflow::ComponentModel::Activity ^ CreateInstance(System::Xml::XmlReader ^ workflowDefinitionReader, System::Xml::XmlReader ^ rulesReader);
protected internal abstract System.Workflow.ComponentModel.Activity CreateInstance (System.Xml.XmlReader workflowDefinitionReader, System.Xml.XmlReader rulesReader);
abstract member CreateInstance : System.Xml.XmlReader * System.Xml.XmlReader -> System.Workflow.ComponentModel.Activity
Protected Friend MustOverride Function CreateInstance (workflowDefinitionReader As XmlReader, rulesReader As XmlReader) As Activity
Parameters
Returns
A WorkflowInstance object that represents the workflow instance created.