Поделиться через


UrlMappingsSection.UrlMappings Свойство

Определение

Возвращает коллекцию объектов UrlMapping.

public:
 property System::Web::Configuration::UrlMappingCollection ^ UrlMappings { System::Web::Configuration::UrlMappingCollection ^ get(); };
[System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)]
public System.Web.Configuration.UrlMappingCollection UrlMappings { get; }
[<System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)>]
member this.UrlMappings : System.Web.Configuration.UrlMappingCollection
Public ReadOnly Property UrlMappings As UrlMappingCollection

Значение свойства

Коллекция UrlMappingCollection, содержащая объекты UrlMapping.

Атрибуты

Примеры

В следующем примере кода показано, как получить urlMappings раздел .


// Get the url mapping collection.
UrlMappingCollection urlMappings =
  urlMappingSection.UrlMappings;
' Get the url mapping collection.
Dim urlMappings _
As UrlMappingCollection = _
urlMappingSection.UrlMappings

Комментарии

Каждый UrlMapping объект содержит два свойства, определяющие URL-адрес. Одно свойство указывает URL-адрес, отображаемый пользователю; другой указывает URL-адрес в веб-приложении.

Применяется к