次の方法で共有


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 を識別する 2 つのプロパティが含まれています。 1 つのプロパティは、ユーザーに表示される URL を指定します。もう一方は、Web アプリケーションの URL を指定します。

適用対象