//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.ServiceModel.Activities.Tracking.Configuration { using System.Configuration; using System.Runtime; /// /// Configure StateMachineStateQueries element in DotNetConfig.xsd file. /// [Fx.Tag.XamlVisible(false)] [ConfigurationCollection(typeof(StateMachineStateQueryElement), CollectionType = ConfigurationElementCollectionType.BasicMap, AddItemName = TrackingConfigurationStrings.StateMachineStateQuery)] public class StateMachineStateQueryElementCollection : TrackingConfigurationCollection { /// /// Generate the StateMachineTrackingQuery element in the DotNetConfig.xsd file. /// protected override string ElementName { get { return TrackingConfigurationStrings.StateMachineStateQuery; } } } }