CustomAttributeBuilder Constructor (ConstructorInfo, array<Object[])

Microsoft Silverlight will reach end of support after October 2021. Learn more.

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)

Syntax

'Declaration
Public Sub New ( _
    con As ConstructorInfo, _
    constructorArgs As Object() _
)
public CustomAttributeBuilder(
    ConstructorInfo con,
    Object[] constructorArgs
)

Parameters

  • constructorArgs
    Type: array<System.Object[]
    The arguments to the constructor of the custom attribute.

Exceptions

Exception Condition
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 nulla null reference (Nothing in Visual Basic).

Remarks

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.

Version Information

Silverlight

Supported in: 5, 4, 3

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.