DefaultWorkflowLoaderService.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 root activity definition tree by using the specified workflow Type. |
CreateInstance(XmlReader, XmlReader) |
Creates a new root activity definition tree by deserializing the .xoml and the .rules files. |
CreateInstance(Type)
Creates a root activity definition tree by using the specified workflow Type.
protected public:
override System::Workflow::ComponentModel::Activity ^ CreateInstance(Type ^ workflowType);
protected internal override System.Workflow.ComponentModel.Activity CreateInstance (Type workflowType);
override this.CreateInstance : Type -> System.Workflow.ComponentModel.Activity
Protected Friend Overrides Function CreateInstance (workflowType As Type) As Activity
Parameters
Returns
An Activity object that represents the root activity definition tree.
Applies to
CreateInstance(XmlReader, XmlReader)
Creates a new root activity definition tree by deserializing the .xoml and the .rules files.
protected public:
override System::Workflow::ComponentModel::Activity ^ CreateInstance(System::Xml::XmlReader ^ workflowDefinitionReader, System::Xml::XmlReader ^ rulesReader);
protected internal override System.Workflow.ComponentModel.Activity CreateInstance (System.Xml.XmlReader workflowDefinitionReader, System.Xml.XmlReader rulesReader);
override this.CreateInstance : System.Xml.XmlReader * System.Xml.XmlReader -> System.Workflow.ComponentModel.Activity
Protected Friend Overrides Function CreateInstance (workflowDefinitionReader As XmlReader, rulesReader As XmlReader) As Activity
Parameters
Returns
An Activity object that represents the root activity definition tree.