//--------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner jeffreed // @backupOwner anpete //--------------------------------------------------------------------- using System; namespace System.Data.Metadata.Edm { /// /// The concurrency mode for properties. /// public enum ConcurrencyMode { /// /// Default concurrency mode: the property is never validated /// at write time /// None, /// /// Fixed concurrency mode: the property is always validated at /// write time /// Fixed, } }