TypeBuilder.DefineEvent(String, EventAttributes, Type) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Adiciona um novo evento ao tipo, com o nome, os atributos e o tipo de evento determinados.
public:
System::Reflection::Emit::EventBuilder ^ DefineEvent(System::String ^ name, System::Reflection::EventAttributes attributes, Type ^ eventtype);
public System.Reflection.Emit.EventBuilder DefineEvent (string name, System.Reflection.EventAttributes attributes, Type eventtype);
member this.DefineEvent : string * System.Reflection.EventAttributes * Type -> System.Reflection.Emit.EventBuilder
Public Function DefineEvent (name As String, attributes As EventAttributes, eventtype As Type) As EventBuilder
Parâmetros
- name
- String
O nome do evento.
name
não pode conter nulos inseridos.
- attributes
- EventAttributes
Os atributos do evento.
- eventtype
- Type
O tipo do evento.
Retornos
O evento definido.
Exceções
O comprimento de name
é zero.
O tipo foi criado anteriormente usando CreateType().
Aplica-se a
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.