WorkflowInfo Element (WorkflowInfo)

Applies to: SharePoint Foundation 2010

The root element of the Actions schema. This element must be included in any .ACTIONS file that is installed on the server.

<WorkflowInfo>
  <Conditions>…</Conditions>
  <Actions>…</Actions>
</WorkflowInfo>

Attributes

Attribute

Description

Language

Refers to the language of the server, not the client. This is notated as a language/culture pair. For example "en-us" is used to specify "English-United States" (see Locale Identifier Constants and Strings).

Child Elements

Conditions

Actions

Parent Elements

None

Example

The following XML demonstrates how to construct the WorkflowInfo element so that all custom actions or conditions that it contains are correctly displayed in the workflow editor.

<WorkflowInfo language="en-us">
   <Conditions>…</Conditions>
   <Actions>…</Actions>
</WorkflowInfo>

See Also

Concepts

Creating Declarative, No-Code Workflow Editors

Actions Schema Reference

WorkflowInfo Schema and WorkflowActions Schema Overview