<system.serviceModel> of workflow

This configuration section contains all the workflow configuration elements.

<configuration>
  <system.ServiceModel>

Syntax

<system.ServiceModel>
  <behaviors>
    <serviceBehaviors>
    <behavior name="String">
      <bufferReceive maxPendingMessagesPerChannel="Integer" />
      <etwTracking profileName="String" />
     <sendMessageChannelCache allowUnsafeCaching="Boolean" >
        <channelSettings idleTimeout="TimeSpan" leaseTimeout="TimeSpan" maxItemsInCache="Integer" />
        <factorySettings idleTimeout="TimeSpan" leaseTimeout="TimeSpan" maxItemsInCache="Integer" />
     </sendMessageChannelCache>
      <sqlWorkflowInstanceStore
          connectionStringName="String"
          hostLockRenewalPeriod="TimeSpan"
          instanceCompletionAction="DeleteNothing/DeleteAll"
          instanceEncodingAction="None/GZip"
          instanceLockedExceptionAction="NoRetry/BasicRetry/AggressiveRetry"
          runnableInstancesDetectionPeriod="TimeSpan" />
      <workflowIdle timeToPersist="TimeSpan"
          timeToUnload="TimeSpan" />
      <workflowUnhandledExceptionAction="Abandon/AbandonAndSuspend/Cancel/Terminate" />
    </behavior>
    </serviceBehaviors>
  </behaviors>
  <tracking>
     <participants>
      <add name="String"
           profileName="String"
           type="String" />
     </participants>
    <trackingProfile name="String">
      <workflow activityDefinitionId="String">
          <activityScheduledQueries>
             <activityScheduledQuery activityName="String"
                 childActivityName="String"/>
          </activityScheduledQueries>
             <activityStateQuery activityName="String" />
                <arguments>
                   <argument name="String"/>
                </arguments>
                <states>
                   <state name="String"/>
                </states>
                <variables>
                   <variable name="String"/>
                </variables>
          </activityStateQueries>
          <bookmarkResumptionQueries>
             <bookmarkResumptionQuery name="String" />
          </bookmarkResumptionQueries>
          <cancelRequestQueries>
             <cancelRequestQuery activityName="String"
                 childActivityName="String"/>
          </cancelRequestQueries>
          <customTrackingQueries>
             <customTrackingQuery activityName="String"
                 name="String"/>
          </customTrackingQueries>
          <faultPropagationQueries>
             <faultPropagationQuery activityName="String"
                 faultHandlerActivityName="String"/>
          </faultPropagationQueries>
         <workflowInstanceQueries>
            <workflowInstanceQuery>
              <states>
                 <state name="String"/>
              </states>
          </workflowInstanceQuery>
        </workflowInstanceQueries>
      </workflow>
    </trackingProfile>
   </profiles>
  </tracking>
</system.ServiceModel>

Attributes and Elements

The following sections describe attributes, child elements, and parent elements.

Attributes

None

Child Elements

Element Description
<behaviors> This section defines the serviceBehaviors collection. Each element in the collection defines behavior elements consumed by services. Each behavior element is identified by its unique name attribute.
<tracking> Represents a configuration section for defining tracking settings for a workflow service.

For more information in workflow tracking and its configuration, see Workflow Tracking and Tracing and Configuring Tracking for a Workflow.

Parent Elements

Element Description
<configuration> The root element for all configuration elements in a .NET configuration file.