Udostępnij za pośrednictwem


UrlMappingCollection.Add(UrlMapping) Metoda

Definicja

Dodaje określony UrlMapping element do kolekcji.

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

UrlMapping Obiekt, który ma zostać dodany do kolekcji.

Przykłady

Poniższy przykład kodu dodaje UrlMapping obiekt do obiektu UrlMappingCollection.

Zapoznaj się z przykładem kodu w temacie klasy, UrlMappingCollection aby dowiedzieć się, jak pobrać kolekcję.


// 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

Dotyczy

Zobacz też