次の方法で共有


UrlMappingCollection.Remove メソッド

定義

UrlMapping オブジェクトをコレクションから削除します。

オーバーロード

Remove(String)

指定した名前を持つ UrlMapping オブジェクトをコレクションから削除します。

Remove(UrlMapping)

指定した UrlMapping オブジェクトをコレクションから削除します。

Remove(String)

指定した名前を持つ UrlMapping オブジェクトをコレクションから削除します。

public:
 void Remove(System::String ^ name);
public void Remove (string name);
member this.Remove : string -> unit
Public Sub Remove (name As String)

パラメーター

name
String

コレクションから削除する UrlMapping オブジェクトの名前。

次のコード例では、 から オブジェクトをUrlMappingUrlMappingCollection削除します。

コレクションを取得する方法については、クラス トピックの UrlMappingCollection コード例を参照してください。


// Remove the URL with the
// specified name from the collection
// (if exists).
urlMappings.Remove("~/default.aspx");

// Update the configuration file.
if (!urlMappingSection.IsReadOnly())
  configuration.Save();
' Remove the URL with the
' specified name from the collection
' (if exists).
urlMappings.Remove("~/home.aspx")

' Update the configuration file.
If Not urlMappingSection.IsReadOnly() Then
    configuration.Save()
End If

注釈

メソッドは Remove 、セクション内の add 要素を現在の urlMappings 階層レベルで削除し、要素を remove 挿入します。 remove 要素は、階層内の上位レベルの親構成ファイルで定義されている要素への add 参照を実質的に削除しますが、削除しません。

こちらもご覧ください

適用対象

Remove(UrlMapping)

指定した UrlMapping オブジェクトをコレクションから削除します。

public:
 void Remove(System::Web::Configuration::UrlMapping ^ urlMapping);
public void Remove (System.Web.Configuration.UrlMapping urlMapping);
member this.Remove : System.Web.Configuration.UrlMapping -> unit
Public Sub Remove (urlMapping As UrlMapping)

パラメーター

urlMapping
UrlMapping

コレクションから削除する UrlMapping オブジェクト。

次のコード例では、 から オブジェクトをUrlMappingUrlMappingCollection削除します。

コレクションを取得する方法については、クラス トピックの UrlMappingCollection コード例を参照してください。


// Create a UrlMapping object.
urlMapping = new UrlMapping(
  "~/home.aspx", "~/default.aspx?parm1=1");

// Remove it from the collection
// (if exists).
urlMappings.Remove(urlMapping);

// Update the configuration file.
if (!urlMappingSection.IsReadOnly())
  configuration.Save();
' Create a UrlMapping object.
urlMapping = New UrlMapping( _
"~/home.aspx", "~/default.aspx?parm1=1")

' Remove it from the collection
' (if exists).
urlMappings.Remove(urlMapping)

' Update the configuration file.
If Not urlMappingSection.IsReadOnly() Then
    configuration.Save()
End If

注釈

メソッドは Remove 、セクション内の add 要素を現在の urlMappings 階層レベルで削除し、要素を remove 挿入します。 remove 要素は、階層内の上位レベルの親構成ファイルで定義されている要素への add 参照を実質的に削除しますが、削除しません。

こちらもご覧ください

適用対象