File: System\Diagnostics\DataContractAttribute.cs
Web Access
Project: src\src\runtime\src\coreclr\nativeaot\System.Private.CoreLib\src\System.Private.CoreLib.csproj (System.Private.CoreLib)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace System.Diagnostics
{
    /// <summary>
    /// When applied to a type, indicates that ILC should include its field layout in the
    /// managed cDAC data descriptor so diagnostic tools can inspect instances without
    /// runtime metadata or symbols. When applied to a field of such a type, indicates ILC should
    /// include that field's offset in the descriptor.
    /// </summary>
    [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Field, Inherited = false)]
    internal sealed class DataContractAttribute : Attribute
    {
    }
}