16 lines
365 B
C#
16 lines
365 B
C#
|
//------------------------------------------------------------
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//------------------------------------------------------------
|
||
|
|
||
|
namespace System.Workflow.Activities
|
||
|
{
|
||
|
using System;
|
||
|
|
||
|
internal enum QueueInitializationMode
|
||
|
{
|
||
|
Standalone,
|
||
|
EventDriven,
|
||
|
StateMachine
|
||
|
}
|
||
|
}
|