singrdk/base/Interfaces/Baseattrs/ThreadStaticAttribute.csi

25 lines
847 B
Plaintext
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
2008-11-17 18:29:00 -05:00
//============================================================
//
// File: ThreadStaticAttribute.cool
//
// Purpose: Custom attribute to indicate that the field should be treated
// as a static relative to a thread.
//
//===========================================================
namespace System
{
2008-03-05 09:52:00 -05:00
//| <include file='doc\ThreadStaticAttribute.uex' path='docs/doc[@for="ThreadStaticAttribute"]/*' />
[AttributeUsage(AttributeTargets.Field, Inherited = false)]
public class ThreadStaticAttribute : Attribute
{
//| <include file='doc\ThreadStaticAttribute.uex' path='docs/doc[@for="ThreadStaticAttribute.ThreadStaticAttribute"]/*' />
public ThreadStaticAttribute();
}
}