File: System\Runtime\DurableInstancing\InstanceState.cs | |
Project: ndp\cdf\src\NetFx40\System.Runtime.DurableInstancing\System.Runtime.DurableInstancing.csproj (System.Runtime.DurableInstancing) |
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------- namespace System.Runtime.DurableInstancing { public enum InstanceState { Unknown = 0, Uninitialized, Initialized, Completed, } } |