Sdílet prostřednictvím


UrlMappingsSection.UrlMappings Vlastnost

Definice

Získá kolekci UrlMapping objektů.

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

Hodnota vlastnosti

Objekt , UrlMappingCollection který obsahuje UrlMapping objekty.

Atributy

Příklady

Následující příklad kódu ukazuje, jak získat urlMappings oddíl .


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

Poznámky

Každý UrlMapping objekt obsahuje dvě vlastnosti identifikující adresu URL. Jedna vlastnost určuje adresu URL zobrazenou uživateli; druhý určuje adresu URL ve webové aplikaci.

Platí pro