StackTraceHiddenAttribute.cs 560 B

12345678910111213141516
  1. #if !BCL_HAS_CONFIGUREAWAIT
  2. using System;
  3. // Licensed to the .NET Foundation under one or more agreements.
  4. // The .NET Foundation licenses this file to you under the MIT license.
  5. // See the LICENSE file in the project root for more information.
  6. namespace System.Diagnostics
  7. {
  8. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Struct, Inherited = false)]
  9. internal sealed class StackTraceHiddenAttribute : Attribute
  10. {
  11. public StackTraceHiddenAttribute() { }
  12. }
  13. }
  14. #endif