NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

CustomAttributeBuilder Constructor

Initializes an instance of the CustomAttributeBuilder class.

[Visual Basic]
Public Sub New( _
   ByVal con As ConstructorInfo, _
   ByVal constructorArgs() As Object _
)
[C#]
public CustomAttributeBuilder(
   ConstructorInfo con,
   object[] constructorArgs
);
[C++]
public: CustomAttributeBuilder(
   ConstructorInfo* con,
   Object* constructorArgs[]
);
[JScript]
public function CustomAttributeBuilder(
   con : ConstructorInfo,
   constructorArgs : Object[]
);

Parameters

con
The constructor for the custom attribute.
constructorArgs
The arguments to the constructor of the custom attribute.

See Also

CustomAttributeBuilder Class | CustomAttributeBuilder Members | System.Reflection.Emit Namespace