Partager via


Erreur du compilateur C3450

'type' : n'est pas un attribut ; impossible de spécifier [System::AttributeUsageAttribute] ou [Windows::Foundation::Metadata::AttributeUsageAttribute]

Un attribut managé défini par l’utilisateur doit hériter de AttributeCollection. Un attribut Windows Runtime doit être défini dans l'espace de noms Windows::Foundation::Metadata.

Pour plus d'informations, consultez User-Defined Attributes.

Exemple

L'exemple suivant génère l'erreur C3450 et montre comment la corriger.

// C3450.cpp
// compile with: /clr
// C3450 expected
using namespace System;
using namespace System::Security;
using namespace System::Security::Permissions;

public ref class MyClass {};

class MyClass2 {};

[attribute(AttributeTargets::All)]
ref struct AtClass {
   AtClass(Type ^) {}
};

[attribute(AttributeTargets::All)]
ref struct AtClass2 {
   AtClass2() {}
};

// Apply the AtClass and AtClass2 attributes to class B
[AtClass(MyClass::typeid), AtClass2]
[AttributeUsage(AttributeTargets::All)]
// Delete the following line to resolve.
ref class B {};
// Uncomment the following line to resolve.
// ref class B : Attribute {};