IDReferencePropertyAttribute Costruttori
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.
Inizializza una nuova istanza della classe IDReferencePropertyAttribute.
Overload
IDReferencePropertyAttribute() |
Inizializza una nuova istanza della classe IDReferencePropertyAttribute. |
IDReferencePropertyAttribute(Type) |
Inizializza una nuova istanza della classe IDReferencePropertyAttribute utilizzando il tipo specificato. |
IDReferencePropertyAttribute()
Inizializza una nuova istanza della classe IDReferencePropertyAttribute.
public:
IDReferencePropertyAttribute();
public IDReferencePropertyAttribute ();
Public Sub New ()
Esempio
Nell'esempio di codice seguente viene illustrato come l'attributo IDReferencePropertyAttribute viene applicato a una proprietà che restituisce una stringa. In questo esempio il DataSourceID
membro identifica un controllo origine dati in fase di esecuzione. Usando il costruttore senza parametri, la ReferencedControlType proprietà è impostata sul valore predefinito, Control.
// This class implements a custom data source control.
public class SomeDataBoundControl : DataBoundControl
{
[ IDReferencePropertyAttribute() ]
new public string DataSourceID {
get {
return base.DataSourceID;
}
set {
base.DataSourceID = value;
}
}
}
' This class implements a custom data source control.
Public Class SomeDataBoundControl
Inherits DataBoundControl
<IDReferencePropertyAttribute()> _
Public Shadows Property DataSourceID() As String
Get
Return MyBase.DataSourceID
End Get
Set
MyBase.DataSourceID = value
End Set
End Property
End Class
Commenti
Quando si chiama questo costruttore, la ReferencedControlType proprietà è impostata su Control, ovvero il relativo valore predefinito.
Vedi anche
Si applica a
IDReferencePropertyAttribute(Type)
Inizializza una nuova istanza della classe IDReferencePropertyAttribute utilizzando il tipo specificato.
public:
IDReferencePropertyAttribute(Type ^ referencedControlType);
public IDReferencePropertyAttribute (Type referencedControlType);
new System.Web.UI.IDReferencePropertyAttribute : Type -> System.Web.UI.IDReferencePropertyAttribute
Public Sub New (referencedControlType As Type)
Parametri
- referencedControlType
- Type
Oggetto Type che specifica il tipo del controllo rappresentato dalla proprietà alla quale viene applicato l'attributo IDReferencePropertyAttribute.
Esempio
Nell'esempio di codice seguente viene illustrato come l'attributo IDReferencePropertyAttribute viene applicato a una proprietà che restituisce una stringa. In questo esempio il DataSourceID
membro identifica un controllo origine dati e quindi specifica il DataSourceControl tipo.
// This class implements a custom data source control.
public class SomeDataBoundControl : DataBoundControl
{
[ IDReferencePropertyAttribute(typeof(DataSourceControl)) ]
new public string DataSourceID {
get {
return base.DataSourceID;
}
set {
base.DataSourceID = value;
}
}
}
' This class implements a custom data source control.
Public Class SomeDataBoundControl
Inherits DataBoundControl
<IDReferencePropertyAttribute(GetType(DataSourceControl))> _
Public Shadows Property DataSourceID() As String
Get
Return MyBase.DataSourceID
End Get
Set
MyBase.DataSourceID = value
End Set
End Property
End Class