Sdílet prostřednictvím


UrlMappingCollection.Add(UrlMapping) Metoda

Definice

Přidá zadané UrlMapping do kolekce.

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

Parametry

urlMapping
UrlMapping

Objekt UrlMapping , který chcete přidat do kolekce.

Příklady

Následující příklad kódu přidá UrlMapping objekt do UrlMappingCollection.

V příkladu kódu v tématu předmětu UrlMappingCollection se dozvíte, jak získat kolekci.


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

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

' Add the urlMapping to 
' the collection.
urlMappings.Add(urlMapping)

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

Platí pro

Viz také