Files
linux-packaging-mono/mcs/class/referencesource/System.Activities.DurableInstancing/System/Activities/DurableInstancing/DetectRunnableInstancesCommand.cs

17 lines
591 B
C#
Raw Normal View History

//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
namespace System.Activities.DurableInstancing
{
using System.Runtime.DurableInstancing;
sealed class DetectRunnableInstancesCommand : InstancePersistenceCommand
{
public DetectRunnableInstancesCommand() :
base(SqlWorkflowInstanceStoreConstants.DurableInstancingNamespace.GetName("DetectRunnableInstances"))
{
}
}
}