Initializes an instance of the CustomAttributeBuilder class given the constructor for the custom attribute, the arguments to the constructor, a set of named property or value pairs, and a set of named field or value pairs.
Namespace:
System.Reflection.Emit
Assembly:
mscorlib (in mscorlib.dll)
Visual Basic (Declaration)
Public Sub New ( _
con As ConstructorInfo, _
constructorArgs As Object(), _
namedProperties As PropertyInfo(), _
propertyValues As Object(), _
namedFields As FieldInfo(), _
fieldValues As Object() _
)
Dim con As ConstructorInfo
Dim constructorArgs As Object()
Dim namedProperties As PropertyInfo()
Dim propertyValues As Object()
Dim namedFields As FieldInfo()
Dim fieldValues As Object()
Dim instance As New CustomAttributeBuilder(con, constructorArgs, _
namedProperties, propertyValues, _
namedFields, fieldValues)
public CustomAttributeBuilder(
ConstructorInfo con,
Object[] constructorArgs,
PropertyInfo[] namedProperties,
Object[] propertyValues,
FieldInfo[] namedFields,
Object[] fieldValues
)
public:
CustomAttributeBuilder(
ConstructorInfo^ con,
array<Object^>^ constructorArgs,
array<PropertyInfo^>^ namedProperties,
array<Object^>^ propertyValues,
array<FieldInfo^>^ namedFields,
array<Object^>^ fieldValues
)
public function CustomAttributeBuilder(
con : ConstructorInfo,
constructorArgs : Object[],
namedProperties : PropertyInfo[],
propertyValues : Object[],
namedFields : FieldInfo[],
fieldValues : Object[]
)
| Exception | Condition |
|---|
| ArgumentException | The lengths of the namedProperties and propertyValues arrays are different. -or- The lengths of the namedFields and fieldValues arrays are different. -or-
con is static or private. -or- The number of supplied arguments does not match the number of parameters of the constructor as required by the calling convention of the constructor. -or- The type of supplied argument does not match the type of the parameter declared in the constructor. -or- The types of the property values do not match the types of the named properties. -or- The types of the field values do not match the types of the corresponding field types. -or- A property has no setter. -or- The property or field does not belong to the same class or base class as the constructor. -or- A supplied argument, named property, or named field is a reference type other than String or Type. |
| ArgumentNullException | One of the parameters is nullNothingnullptra null reference (Nothing in Visual Basic). |
The elements of the constructorArgs, propertyValues, or fieldValues arrays are restricted to element types. They can be byte, sbyte, int, uint, long, ulong, float, double, String, char, bool, an enum, a type, any of the previous types that was cast to an object, or a single-dimension, zero-based array of any of the previous types.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Reference