2008-03-05 09:52:00 -05:00
|
|
|
// ==++==
|
|
|
|
//
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
//
|
|
|
|
// ==--==
|
2008-11-17 18:29:00 -05:00
|
|
|
//============================================================
|
|
|
|
//
|
|
|
|
// Class: Attribute
|
|
|
|
//
|
|
|
|
// Purpose: The class used as an attribute to denote that
|
|
|
|
// another class can be used as an attribute.
|
|
|
|
//
|
|
|
|
//===========================================================
|
|
|
|
namespace System
|
|
|
|
{
|
2008-03-05 09:52:00 -05:00
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Reflection;
|
|
|
|
using System.Collections;
|
|
|
|
|
|
|
|
// This class is a placeholder for the compiler only!
|
|
|
|
// Singularity and Bartok don't support runtime access to custom attributes.
|
|
|
|
|
|
|
|
//| <include path='docs/doc[@for="Attribute"]/*' />
|
|
|
|
[AttributeUsageAttribute(AttributeTargets.All, Inherited = true, AllowMultiple=false)] // Base class for all attributes
|
|
|
|
public abstract class Attribute {
|
|
|
|
//| <include path='docs/doc[@for="Attribute.Attribute"]/*' />
|
|
|
|
protected Attribute(){}
|
|
|
|
}
|
|
|
|
}
|