16 lines
365 B
C#
Raw Normal View History

//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.Workflow.Activities
{
using System;
internal enum QueueInitializationMode
{
Standalone,
EventDriven,
StateMachine
}
}