Compartir a través de


DataBoundControlAdapter.Control Propiedad

Definición

Recupera una referencia fuertemente tipada al objeto DataBoundControl asociado a este adaptador de control.

protected:
 property System::Web::UI::WebControls::DataBoundControl ^ Control { System::Web::UI::WebControls::DataBoundControl ^ get(); };
protected System.Web.UI.WebControls.DataBoundControl Control { get; }
member this.Control : System.Web.UI.WebControls.DataBoundControl
Protected ReadOnly Property Control As DataBoundControl

Valor de propiedad

Propiedad DataBoundControl a la que está asociado el objeto DataBoundControlAdapter.

Ejemplos

En el ejemplo de código siguiente se muestra cómo invalidar la Control propiedad en un adaptador derivado de la DataBoundControlAdapter clase . Devuelve una referencia fuertemente tipada al MyDataBound control .

// Returns a strongly-typed reference to the MyDataBound control.
public new MyDataBound Control
{
    get
    {
        return (MyDataBound)base.Control;
    }
}
' Returns a strongly-typed reference to the MyDataBound control.
Public Shadows ReadOnly Property Control() As MyDataBound
    Get
        Return CType(MyBase.Control, MyDataBound)
    End Get
End Property

Comentarios

Cuando un DataBoundControlAdapter objeto está asociado a un DataBoundControl control, .NET Framework llama a determinados miembros del adaptador en lugar de a los miembros del control.

Notas a los desarrolladores de herederos

Al heredar de la DataBoundControlAdapter clase , debe, como mínimo, implementar una Control propiedad para devolver una instancia fuertemente tipada del control, como se muestra en la sección Ejemplo.

Se aplica a

Consulte también