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

17 lines
582 B
C#
Raw Normal View History

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