XhtmlControlAdapter.GetCustomAttributeValue Método

Definición

Obtiene el valor del atributo personalizado especificado. Esta API está obsoleta. Para obtener información sobre cómo desarrollar aplicaciones móviles ASP.NET, consulte Mobile Apps & Sites with ASP.NET.

Sobrecargas

GetCustomAttributeValue(String)

Obtiene el valor del atributo especificado del marcado del control asociado. Esta API está obsoleta. Para obtener información sobre cómo desarrollar aplicaciones móviles ASP.NET, consulte Mobile Apps & Sites with ASP.NET.

GetCustomAttributeValue(MobileControl, String)

Obtiene el valor del atributo especificado de un control determinado. Esta API está obsoleta. Para obtener información sobre cómo desarrollar aplicaciones móviles ASP.NET, consulte Mobile Apps & Sites with ASP.NET.

GetCustomAttributeValue(String)

Obtiene el valor del atributo especificado del marcado del control asociado. Esta API está obsoleta. Para obtener información sobre cómo desarrollar aplicaciones móviles ASP.NET, consulte Mobile Apps & Sites with ASP.NET.

protected:
 virtual System::String ^ GetCustomAttributeValue(System::String ^ attributeName);
protected virtual string GetCustomAttributeValue (string attributeName);
abstract member GetCustomAttributeValue : string -> string
override this.GetCustomAttributeValue : string -> string
Protected Overridable Function GetCustomAttributeValue (attributeName As String) As String

Parámetros

attributeName
String

El nombre del atributo.

Devoluciones

Cadena que contiene el valor del atributo personalizado especificado.

Los desarrolladores de adaptadores personalizados utilizan principalmente este método.

Consulte también

Se aplica a

GetCustomAttributeValue(MobileControl, String)

Obtiene el valor del atributo especificado de un control determinado. Esta API está obsoleta. Para obtener información sobre cómo desarrollar aplicaciones móviles ASP.NET, consulte Mobile Apps & Sites with ASP.NET.

protected:
 virtual System::String ^ GetCustomAttributeValue(System::Web::UI::MobileControls::MobileControl ^ control, System::String ^ attributeName);
protected virtual string GetCustomAttributeValue (System.Web.UI.MobileControls.MobileControl control, string attributeName);
abstract member GetCustomAttributeValue : System.Web.UI.MobileControls.MobileControl * string -> string
override this.GetCustomAttributeValue : System.Web.UI.MobileControls.MobileControl * string -> string
Protected Overridable Function GetCustomAttributeValue (control As MobileControl, attributeName As String) As String

Parámetros

control
MobileControl

Control móvil del que se obtiene el valor del atributo.

attributeName
String

El nombre del atributo.

Devoluciones

Cadena que contiene el valor del atributo personalizado especificado.

Comentarios

Los desarrolladores de adaptadores personalizados utilizan principalmente este método.

Consulte también

Se aplica a