e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
31 lines
831 B
C#
31 lines
831 B
C#
//---------------------------------------------------------------------
|
|
// <copyright file="ConcurrencyMode.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//
|
|
// @owner jeffreed
|
|
// @backupOwner anpete
|
|
//---------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
namespace System.Data.Metadata.Edm
|
|
{
|
|
/// <summary>
|
|
/// The concurrency mode for properties.
|
|
/// </summary>
|
|
public enum ConcurrencyMode
|
|
{
|
|
/// <summary>
|
|
/// Default concurrency mode: the property is never validated
|
|
/// at write time
|
|
/// </summary>
|
|
None,
|
|
|
|
/// <summary>
|
|
/// Fixed concurrency mode: the property is always validated at
|
|
/// write time
|
|
/// </summary>
|
|
Fixed,
|
|
}
|
|
} |