Name

CustomAttributeBuilder

Synopsis

This class represents a dynamically created custom attribute. To apply a custom attribute, pass an instance of this type to the SetCustomAttribute() method for the appropriate builder (for example, PropertyBuilder.SetCustomAttribute() or MethodBuilder.SetCustomAttribute()). The constructor allows you to specify the custom attribute’s named properties and fields, their values, and a constructor.

Public Class CustomAttributeBuilder
                  ' Public Constructors
   Public Sub New(
        ByVal con As System.Reflection.ConstructorInfo, 
        ByVal constructorArgs As Object()) 
   Public Sub New(
        ByVal con As System.Reflection.ConstructorInfo, 
        ByVal constructorArgs As Object(), 
        ByVal namedFields As System.Reflection.FieldInfo(), 
        ByVal fieldValues As Object()) 
   Public Sub New(
        ByVal con As System.Reflection.ConstructorInfo, 
        ByVal constructorArgs As Object(), 
        ByVal namedProperties As System.Reflection.PropertyInfo(), 
        ByVal propertyValues As Object()) 
   Public Sub New(
        ByVal con As System.Reflection.ConstructorInfo, 
        ByVal constructorArgs As Object(), 
        ByVal namedProperties As System.Reflection.PropertyInfo(), 
        ByVal propertyValues As Object(), 
        ByVal namedFields As System.Reflection.FieldInfo(), 
        ByVal fieldValues As Object()) 
End Class

Passed To

AssemblyBuilder.SetCustomAttribute(), ConstructorBuilder.SetCustomAttribute(), EnumBuilder.SetCustomAttribute(), EventBuilder.SetCustomAttribute(), FieldBuilder.SetCustomAttribute(), MethodBuilder.SetCustomAttribute(), ModuleBuilder.SetCustomAttribute() ...

Get VB.NET Core Classes in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.