EventBuilder.AddOtherMethod(MethodBuilder) Método

Definición

Agrega alguno de los "otros" métodos asociados a este evento. Cuando se habla de "otros" métodos, se hace referencia a métodos distintos de los métodos "on" y "raise" que están asociados a un evento. Se puede llamar a esta función numerosas veces para agregar todos los "otros" métodos que se desee.

public:
 void AddOtherMethod(System::Reflection::Emit::MethodBuilder ^ mdBuilder);
public void AddOtherMethod (System.Reflection.Emit.MethodBuilder mdBuilder);
member this.AddOtherMethod : System.Reflection.Emit.MethodBuilder -> unit
Public Sub AddOtherMethod (mdBuilder As MethodBuilder)

Parámetros

mdBuilder
MethodBuilder

Objeto MethodBuilder que representa el otro método.

Excepciones

mdBuilder es null.

Se ha llamado a CreateType() en el tipo envolvente.

Se aplica a