WorkflowRuntimeSection.Services Property
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.
Gets the collection of services that are added to the workflow run-time engine when it is initialized.
public:
property System::Workflow::Runtime::Configuration::WorkflowRuntimeServiceElementCollection ^ Services { System::Workflow::Runtime::Configuration::WorkflowRuntimeServiceElementCollection ^ get(); };
[System.Configuration.ConfigurationProperty("Services", DefaultValue=null)]
public System.Workflow.Runtime.Configuration.WorkflowRuntimeServiceElementCollection Services { get; }
[<System.Configuration.ConfigurationProperty("Services", DefaultValue=null)>]
member this.Services : System.Workflow.Runtime.Configuration.WorkflowRuntimeServiceElementCollection
Public ReadOnly Property Services As WorkflowRuntimeServiceElementCollection
Property Value
The services to be added to the workflow run-time engine.
- Attributes
Remarks
The services specified in the WorkflowRuntimeServiceElementCollection are initialized by the workflow run-time engine and added to its services when the appropriate WorkflowRuntime constructor is called. Therefore the services specified in the WorkflowRuntimeServiceElementCollection must follow certain rules about the signatures of their constructors. For more information, see WorkflowRuntimeServiceElement.