PropertyGeneratedEventHandler Delegato
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Rappresenta il metodo che gestirà l'evento OnPropertyGenerated.
public delegate void PropertyGeneratedEventHandler(System::Object ^ sender, PropertyGeneratedEventArgs ^ e);
public delegate void PropertyGeneratedEventHandler(object sender, PropertyGeneratedEventArgs e);
type PropertyGeneratedEventHandler = delegate of obj * PropertyGeneratedEventArgs -> unit
Public Delegate Sub PropertyGeneratedEventHandler(sender As Object, e As PropertyGeneratedEventArgs)
Parametri
- sender
- Object
Origine dell'evento.
Dati per l'evento.
Commenti
Quando si crea un delegato PropertyGeneratedEventHandler, si identifica il metodo che gestirà l'evento. Per associare l'evento al gestore eventi in uso, aggiungere all'evento un'istanza del delegato. Il gestore eventi viene chiamato ogni volta che si verifica l'evento, a meno che non venga rimosso il delegato.
Metodi di estensione
GetMethodInfo(Delegate) |
Ottiene un oggetto che rappresenta il metodo rappresentato dal delegato specificato. |