SystemWebSectionGroup.MobileControls Propiedad

Definición

Precaución

System.Web.Mobile.dll is obsolete.

Obtiene la sección mobileControls.

public:
 property System::Configuration::ConfigurationSection ^ MobileControls { System::Configuration::ConfigurationSection ^ get(); };
[System.Configuration.ConfigurationProperty("mobileControls")]
public System.Configuration.ConfigurationSection MobileControls { get; }
[System.Configuration.ConfigurationProperty("mobileControls")]
[System.Obsolete("System.Web.Mobile.dll is obsolete.")]
public System.Configuration.ConfigurationSection MobileControls { get; }
[<System.Configuration.ConfigurationProperty("mobileControls")>]
member this.MobileControls : System.Configuration.ConfigurationSection
[<System.Configuration.ConfigurationProperty("mobileControls")>]
[<System.Obsolete("System.Web.Mobile.dll is obsolete.")>]
member this.MobileControls : System.Configuration.ConfigurationSection
Public ReadOnly Property MobileControls As ConfigurationSection

Valor de propiedad

El objeto ConfigurationSection hace referencia a la sección mobileControls del archivo de configuración.

Atributos

Ejemplos

En el ejemplo de código siguiente se muestra cómo obtener el ConfigurationSection objeto del archivo de configuración de una aplicación web existente.

// Get the mobileControls section.
ConfigurationSection mobileControls =
    systemWeb.MobileControls;
// Read section information.
info =
    mobileControls.SectionInformation;

name = info.SectionName;
type = info.Type;
declared = info.IsDeclared.ToString();
msg = String.Format(
    "Name:     {0}\nDeclared: {1}\nType:     {2}\n",
    name, declared, type);
' Get the mobileControls section.
Dim mobileControls _
As ConfigurationSection = _
systemWeb.MobileControls
' Read section information.
info = mobileControls.SectionInformation

name = info.SectionName
type = info.Type
declared = info.IsDeclared.ToString()
msg = String.Format("Name:     {0}" + _
ControlChars.Lf + "Declared: {1}" + _
ControlChars.Lf + "Type:     {2}" + _
ControlChars.Lf, name, declared, type)

Se aplica a

Consulte también