CustomAttributeBuilder Constructor (ConstructorInfo, Object[])

CustomAttributeBuilder Constructor (ConstructorInfo, Object())

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Initializes a new instance of the CustomAttributeBuilder class given the constructor for the custom attribute and the arguments to the constructor.

Namespace:  System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

'Declaration
Public Sub New ( _
	con As ConstructorInfo, _
	constructorArgs As Object() _
)

Parameters

con
Type: System.Reflection.ConstructorInfo
The constructor for the custom attribute.
constructorArgs
Type: System.Object ()
The arguments to the constructor of the custom attribute.

ExceptionCondition
ArgumentException

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-

A supplied argument is a reference type other than String or Type.

ArgumentNullException

con or constructorArgs is Nothing.

The elements of the constructorArgs array 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 Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft