SystemWebSectionGroup.MobileControls Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Внимание!
System.Web.Mobile.dll is obsolete.
Получает раздел 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
Значение свойства
Объект ConfigurationSection ссылается на раздел mobileControls
файла конфигурации.
- Атрибуты
Примеры
В следующем примере кода показано, как получить ConfigurationSection объект из файла конфигурации существующего веб-приложения.
// 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)
Применяется к
См. также раздел
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.