Files
linux-packaging-mono/external/aspnetwebstack/src/Microsoft.Web.Http.Data/RoundtripOriginalAttribute.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

16 lines
797 B
C#

// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
namespace System.ComponentModel.DataAnnotations
{
/// <summary>
/// When applied to a member, this attribute indicates that the original value of
/// the member should be sent back to the server when the object is updated. When applied
/// to a class, the attribute gets applied to each member of that class. If this attribute is not
/// present, the value of this member will be null in the original object sent back to the server.
/// </summary>
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Class, AllowMultiple = false)]
public sealed class RoundtripOriginalAttribute : Attribute
{
}
}