ConfigurationSectionWithCollection.Add-Methode
Fügt einer Auflistung in einem Konfigurationsabschnitt ein Element hinzu.
Syntax
ConfigurationSectionWithCollection.Add collectionName, element;
ConfigurationSectionWithCollection.Add collectionName, element
Parameter
Name | Definition |
---|---|
collectionName |
Ein string Wert, der den Namen der Auflistung enthält, der hinzugefügt wird. |
element |
Ein CollectionElement-Objekt, dem das Element hinzugefügt wird. |
Rückgabewert
Diese Methode gibt keinen Wert zurück.
Hinweise
Wenn Sie die Add
Methode verwenden, werden die vorgenommenen Änderungen automatisch gespeichert. Sie müssen die Put_
-Methode nicht verwenden.
Beispiel
Im folgenden Beispiel wird der Standardwebsite eine MIME-Zuordnung hinzugefügt.
' Connect to the WMI WebAdministration namespace.
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")
' Get the default Web site.
Set oSite = oWebAdmin.Get("Site.Name='Default Web Site'")
' Get the static content section by using the GetSection method.
oSite.GetSection "StaticContentSection", oStaticContentSection
' Get the MimeMapElement class object.
Set oMimeMapElement = oWebAdmin.Get("MimeMapElement")
' Spawn a new instance of the MimeMapElement class.
Set oNewMimeMap = oMimeMapElement.SpawnInstance_
' Assign values to the FileExtension and MimeType properties.
oNewMimeMap.FileExtension = "MyFileExtension"
oNewMimeMap.MimeType = "application/MyApp"
' Add the MIME map to the collection.
oStaticContentSection.Add "StaticContent", oNewMimeMap
Anforderungen
type | Beschreibung |
---|---|
Client | IIS 7.0 unter Windows Vista. IIS 7.5 unter Windows 7 IIS 8.0 unter Windows 8 IIS 10.0 unter Windows 10 |
Server | IIS 7.0 unter Windows Server 2008 - IIS 7.5 unter Windows Server 2008 R2 IIS 8.0 auf Windows Server 2012. - IIS 8.5 unter Windows Server 2012 R2 IIS 10.0 auf Windows Server 2016. |
Produkt | - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0 |
MOF-Datei | WebAdministration.mof |
Weitere Informationen
CollectionElement-Klasse
ConfigurationSectionWithCollection-Klasse
MimeMapElement-Klasse