TypeDescriptor.AddAttributes Method (Object, Attribute[])
Adds class-level attributes to the target component instance.
Namespace: System.ComponentModel
Assembly: System (in System.dll)
[PermissionSetAttribute(SecurityAction.LinkDemand, Name = "FullTrust")] public static TypeDescriptionProvider AddAttributes( Object instance, params Attribute[] attributes )
Parameters
- instance
- Type: System.Object
An instance of the target component.
- attributes
- Type: System.Attribute[]
An array of Attribute objects to add to the component's class.
Return Value
Type: System.ComponentModel.TypeDescriptionProviderThe newly created TypeDescriptionProvider that was used to add the specified attributes.
| Exception | Condition |
|---|---|
| ArgumentNullException | One or both of the parameters is null. |
The AddAttributes(Object, Attribute[]) method adds class-level attributes to the specified instance of a component. Because this is a common requirement of applications using the Visual Studio Windows Forms Designer and Properties window, this method provides a shortcut by creating a type description provider that merges the provided attributes with the attributes that already exist on the class. The return value is the type description provider that was used to add the attributes. This provider can later be passed to the RemoveProvider(TypeDescriptionProvider, Object) method when the added attributes are no longer needed.
- NamedPermissionSet
for full access to system resources. Demand value: LinkDemand. Associated state: FullTrust
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.