PropertyDescriptor Costruttori

Definizione

Inizializza una nuova istanza della classe PropertyDescriptor.

Overload

PropertyDescriptor(MemberDescriptor)

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

PropertyDescriptor(MemberDescriptor, Attribute[])

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

PropertyDescriptor(String, Attribute[])

Consente di inizializzare una nuova istanza della classe PropertyDescriptor con il nome e gli attributi specificati.

PropertyDescriptor(MemberDescriptor)

Source:
PropertyDescriptor.cs
Source:
PropertyDescriptor.cs
Source:
PropertyDescriptor.cs

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

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

Parametri

descr
MemberDescriptor

Oggetto MemberDescriptor che contiene il nome della proprietà e i relativi attributi.

Vedi anche

Si applica a

PropertyDescriptor(MemberDescriptor, Attribute[])

Source:
PropertyDescriptor.cs
Source:
PropertyDescriptor.cs
Source:
PropertyDescriptor.cs

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

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

Parametri

descr
MemberDescriptor

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

attrs
Attribute[]

Matrice Attribute contenente gli attributi che si desidera associare alla proprietà.

Commenti

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

Vedi anche

Si applica a

PropertyDescriptor(String, Attribute[])

Source:
PropertyDescriptor.cs
Source:
PropertyDescriptor.cs
Source:
PropertyDescriptor.cs

Consente di inizializzare una nuova istanza della classe PropertyDescriptor con il nome e gli attributi specificati.

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

Parametri

name
String

Nome della proprietà.

attrs
Attribute[]

Matrice di tipo Attribute che contiene gli attributi della proprietà.

Vedi anche

Si applica a