Metodo AttributeTableBuilder.AddCustomAttributes (Type, String, array<Attribute )
Aggiunge attributi al membro con il nome specificato.
Spazio dei nomi: Microsoft.Windows.Design.Metadata
Assembly: Microsoft.Windows.Design.Extensibility (in Microsoft.Windows.Design.Extensibility.dll)
Sintassi
'Dichiarazione
Public Sub AddCustomAttributes ( _
ownerType As Type, _
memberName As String, _
ParamArray attributes As Attribute() _
)
public void AddCustomAttributes(
Type ownerType,
string memberName,
params Attribute[] attributes
)
public:
void AddCustomAttributes(
Type^ ownerType,
String^ memberName,
... array<Attribute^>^ attributes
)
member AddCustomAttributes :
ownerType:Type *
memberName:string *
attributes:Attribute[] -> unit
public function AddCustomAttributes(
ownerType : Type,
memberName : String,
... attributes : Attribute[]
)
Parametri
- ownerType
Tipo: System.Type
Tipo cui appartiene il membro.
- memberName
Tipo: System.String
Membro per cui aggiungere attributi.
- attributes
Tipo: array<System.Attribute[]
Attributi da aggiungere.
Eccezioni
Eccezione | Condizione |
---|---|
ArgumentNullException | ownerType, memberName o attributes è nullriferimento null (Nothing in Visual Basic). |
Note
Il membro può essere una proprietà o un evento. Il membro viene valutato su richiesta quando l'utente esegue una query per gli attributi su una proprietà o un evento specificato. Sono supportati solo i membri di tipo proprietà o evento. Tutti gli altri vengono ignorati.
Esempi
Nell'esempio di codice seguente viene illustrato come aggiungere un attributo a un membro. Questo esempio di codice fa parte di un esempio più completo fornito per la classe AttributeTableBuilder.
' Apply the ReadOnlyAttribute to the Background property
' of the Button class.
builder.AddCustomAttributes( _
GetType(Button), _
"Background", _
New ReadOnlyAttribute(True))
// Apply the ReadOnlyAttribute to the Background property
// of the Button class.
builder.AddCustomAttributes(
typeof(Button),
"Background",
new ReadOnlyAttribute(true));
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.