Partager via


VirtualTypeBuilder.EventInfoCollection.Add Method (String, Type, array<Attribute )

Adds an EventInfo to the end of the collection.

Namespace:  Microsoft.VisualStudio.Shell.Design
Assembly:  Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)

Syntax

'Declaration
Public Function Add ( _
    name As String, _
    handlerType As Type, _
    attributes As Attribute() _
) As Integer
public int Add(
    string name,
    Type handlerType,
    Attribute[] attributes
)
public:
int Add(
    String^ name, 
    Type^ handlerType, 
    array<Attribute^>^ attributes
)
member Add : 
        name:string * 
        handlerType:Type * 
        attributes:Attribute[] -> int
public function Add(
    name : String, 
    handlerType : Type, 
    attributes : Attribute[]
) : int

Parameters

  • name
    Type: String

    The name of the event to add.

  • handlerType
    Type: Type

    The type of delegate this event represents.

  • attributes
    Type: array<Attribute[]

    This value must be Public and/or Static.

Return Value

Type: Int32
The index at which the value has been added.

Exceptions

Exception Condition
ArgumentNullException

name or handlerType or an element in attributes is nulla null reference (Nothing in Visual Basic). attributes itself may be nulla null reference (Nothing in Visual Basic).

ArgumentException

handlerType is not a run-time type.

.NET Framework Security

See Also

Reference

VirtualTypeBuilder.EventInfoCollection Class

Add Overload

Microsoft.VisualStudio.Shell.Design Namespace