Aracılığıyla paylaş


SystemWebSectionGroup.MobileControls Özellik

Tanım

Dikkat

System.Web.Mobile.dll is obsolete.

mobileControls Bölümü alır.

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

Özellik Değeri

ConfigurationSection nesnesi yapılandırma dosyasının mobileControls bölümüne başvurur.

Öznitelikler

Örnekler

Aşağıdaki kod örneği, nesnenin ConfigurationSection var olan bir Web uygulamasının yapılandırma dosyasından nasıl alınacaklarını gösterir.

// 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)

Şunlara uygulanır

Ayrıca bkz.