File: System\Runtime\DurableInstancing\InstanceKeyState.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 InstanceKeyState { Unknown = 0, Associated, Completed, } } |