EventDescriptor Costruttori

Definizione

Inizializza una nuova istanza della classe EventDescriptor.

Overload

EventDescriptor(MemberDescriptor)

Inizializza una nuova istanza della classe EventDescriptor con il nome e gli attributi nell'oggetto MemberDescriptor specificato.

EventDescriptor(MemberDescriptor, Attribute[])

Inizializza una nuova istanza della classe EventDescriptor con il nome nell'oggetto MemberDescriptor specificato e gli attributi nell'oggetto MemberDescriptor e nella matrice Attribute.

EventDescriptor(String, Attribute[])

Consente di inizializzare una nuova istanza della classe EventDescriptor con il nome specificato e la matrice degli attributi.

EventDescriptor(MemberDescriptor)

Source:
EventDescriptor.cs
Source:
EventDescriptor.cs
Source:
EventDescriptor.cs

Inizializza una nuova istanza della classe EventDescriptor con il nome e gli attributi nell'oggetto MemberDescriptor specificato.

protected:
 EventDescriptor(System::ComponentModel::MemberDescriptor ^ descr);
protected EventDescriptor (System.ComponentModel.MemberDescriptor descr);
new System.ComponentModel.EventDescriptor : System.ComponentModel.MemberDescriptor -> System.ComponentModel.EventDescriptor
Protected Sub New (descr As MemberDescriptor)

Parametri

descr
MemberDescriptor

Un oggetto MemberDescriptor che contiene il nome dell'evento e i relativi attributi.

Si applica a

EventDescriptor(MemberDescriptor, Attribute[])

Source:
EventDescriptor.cs
Source:
EventDescriptor.cs
Source:
EventDescriptor.cs

Inizializza una nuova istanza della classe EventDescriptor con il nome nell'oggetto MemberDescriptor specificato e gli attributi nell'oggetto MemberDescriptor e nella matrice Attribute.

protected:
 EventDescriptor(System::ComponentModel::MemberDescriptor ^ descr, cli::array <Attribute ^> ^ attrs);
protected EventDescriptor (System.ComponentModel.MemberDescriptor descr, Attribute[] attrs);
protected EventDescriptor (System.ComponentModel.MemberDescriptor descr, Attribute[]? attrs);
new System.ComponentModel.EventDescriptor : System.ComponentModel.MemberDescriptor * Attribute[] -> System.ComponentModel.EventDescriptor
Protected Sub New (descr As MemberDescriptor, attrs As Attribute())

Parametri

descr
MemberDescriptor

Oggetto MemberDescriptor che ha il nome del membro e i relativi attributi.

attrs
Attribute[]

Matrice Attribute con gli attributi che si desidera aggiungere alla descrizione dell'evento.

Commenti

Questo costruttore aggiunge gli attributi nella Attribute matrice agli attributi in MemberDescriptor.

Si applica a

EventDescriptor(String, Attribute[])

Source:
EventDescriptor.cs
Source:
EventDescriptor.cs
Source:
EventDescriptor.cs

Consente di inizializzare una nuova istanza della classe EventDescriptor con il nome specificato e la matrice degli attributi.

protected:
 EventDescriptor(System::String ^ name, cli::array <Attribute ^> ^ attrs);
protected EventDescriptor (string name, Attribute[] attrs);
protected EventDescriptor (string name, Attribute[]? attrs);
new System.ComponentModel.EventDescriptor : string * Attribute[] -> System.ComponentModel.EventDescriptor
Protected Sub New (name As String, attrs As Attribute())

Parametri

name
String

Nome dell'evento.

attrs
Attribute[]

Matrice di tipo Attribute contenente gli attributi dell'evento.

Si applica a