BindingCollection Class

IIS 7.0
 

Represents a collection of bindings.

Namespace:   Microsoft.Web.Administration
Assembly:  Microsoft.Web.Administration (in Microsoft.Web.Administration.dll)


Public NotInheritable Class BindingCollection
	Inherits ConfigurationElementCollectionBase(Of Binding)

NameDescription
System_CAPS_pubpropertyAllowsAdd

Gets a value indicating whether an add element name is defined in the current collection schema.(Inherited from ConfigurationElementCollectionBase(Of T).)

System_CAPS_pubpropertyAllowsClear

Gets a value indicating whether a clear element name is defined in the current collection schema.(Inherited from ConfigurationElementCollectionBase(Of T).)

System_CAPS_pubpropertyAllowsRemove

Gets a value indicating whether a remove element name is defined in the current collection schema.(Inherited from ConfigurationElementCollectionBase(Of T).)

System_CAPS_pubpropertyAttributes

Gets a configuration attribute collection that contains the list of attributes for this element.(Inherited from ConfigurationElement.)

System_CAPS_pubpropertyChildElements

Gets all the child elements of the current element.(Inherited from ConfigurationElement.)

System_CAPS_pubpropertyCount

Gets the number of items in the collection.(Inherited from ConfigurationElementCollectionBase(Of T).)

System_CAPS_pubpropertyIsLocallyStored

Gets a value indicating whether the configuration element is stored in a particular configuration file.(Inherited from ConfigurationElement.)

System_CAPS_pubpropertyItem(Int32)

Gets a configuration element at the specified index.(Inherited from ConfigurationElementCollectionBase(Of T).)

System_CAPS_pubpropertyItem(String)

Gets or sets an attribute with the specified name.(Inherited from ConfigurationElement.)

System_CAPS_pubpropertyMethods

Gets a collection of methods for the configuration element. (Inherited from ConfigurationElement.)

System_CAPS_pubpropertySchema

Gets the schema that describes the configuration element collection.(Inherited from ConfigurationElementCollectionBase(Of T).)

NameDescription
System_CAPS_pubmethodAdd(Binding)

Adds a secure binding to the end of the collection.

System_CAPS_pubmethodAdd(String, Byte(), String)

Adds a secure binding to the binding collection.

System_CAPS_pubmethodAdd(String, Byte(), String, SslFlags)

System_CAPS_pubmethodAdd(String, String)

Adds a binding with the specified protocol and binding information to the binding collection.

System_CAPS_pubmethodAddAt(Int32, T)

Adds a configuration element to the current collection at the specified index.(Inherited from ConfigurationElementCollectionBase(Of T).)

System_CAPS_pubmethodClear()

Clears all configuration elements from the current collection.(Inherited from ConfigurationElementCollectionBase(Of T).)

System_CAPS_pubmethodCreateElement()

Creates a new child element for the current collection.(Inherited from ConfigurationElementCollectionBase(Of T).)

System_CAPS_pubmethodCreateElement(String)

Creates a new child element by using the specified name.(Inherited from ConfigurationElementCollectionBase(Of T).)

System_CAPS_pubmethodEquals(Object)

(Inherited from Object.)

System_CAPS_pubmethodGetAttribute(String)

Returns a ConfigurationAttribute object that represents the requested attribute.(Inherited from ConfigurationElement.)

System_CAPS_pubmethodGetAttributeValue(String)

Returns the value of the specified attribute.(Inherited from ConfigurationElement.)

System_CAPS_pubmethodGetChildElement(String)

Returns a child element that is under the current configuration element and has the specified name.(Inherited from ConfigurationElement.)

System_CAPS_pubmethodGetChildElement(String, Type)

Returns a child element that is under the current configuration element and has the specified name and type.(Inherited from ConfigurationElement.)

System_CAPS_pubmethodGetCollection()

Returns the default collection for the current configuration element.(Inherited from ConfigurationElement.)

System_CAPS_pubmethodGetCollection(String)

Returns all configuration elements that belong to the current configuration element.(Inherited from ConfigurationElement.)

System_CAPS_pubmethodGetCollection(String, Type)

Returns the configuration element that has the specified name and type and is under the current configuration element.(Inherited from ConfigurationElement.)

System_CAPS_pubmethodGetCollection(Type)

Returns the configuration element that has the specified type and is under the current configuration element.(Inherited from ConfigurationElement.)

System_CAPS_pubmethodGetEnumerator()

Returns an enumerator that iterates through a collection.(Inherited from ConfigurationElementCollectionBase(Of T).)

System_CAPS_pubmethodGetHashCode()

(Inherited from Object.)

System_CAPS_pubmethodGetMetadata(String)

Returns metadata values from the element schema.(Inherited from ConfigurationElement.)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_pubmethodIndexOf(T)

Determines the index of an element in the collection.(Inherited from ConfigurationElementCollectionBase(Of T).)

System_CAPS_pubmethodRemove(Binding)

Removes the specified binding from the binding collection.

System_CAPS_pubmethodRemove(Binding, Boolean)

System_CAPS_pubmethodRemoveAt(Int32)

Removes a binding at the specified index.

System_CAPS_pubmethodSetAttributeValue(String, Object)

Sets the value of the specified attribute.(Inherited from ConfigurationElement.)

System_CAPS_pubmethodSetMetadata(String, Object)

Sets metadata values from the element schema.(Inherited from ConfigurationElement.)

System_CAPS_pubmethodToString()

(Inherited from Object.)

NameDescription
System_CAPS_pubinterfaceSystem_CAPS_privmethodICollection.CopyTo(Array, Int32)

Copies the elements of the collection to an array, starting at a particular array index.(Inherited from ConfigurationElementCollectionBase(Of T).)

System_CAPS_pubinterfaceSystem_CAPS_privmethodIEnumerable.GetEnumerator()

Returns an enumerator that iterates through the collection.(Inherited from ConfigurationElementCollectionBase(Of T).)

System_CAPS_pubinterfaceSystem_CAPS_privpropertyICollection.Count
System_CAPS_pubinterfaceSystem_CAPS_privpropertyICollection.IsSynchronized
System_CAPS_pubinterfaceSystem_CAPS_privpropertyICollection.SyncRoot

You can view the bindings for a site in the Site Bindings dialog box in IIS Manager. To open the dialog box, right-click a site node in the Connections pane, and then click Edit Bindings. The Site Bindings dialog box displays the Binding objects in the BindingCollection object for the site.

Changes to the BindingCollection object are not reflected in IIS Manager until the ApplicationHost.config file is updated by a call to the ManagementUnit.Update method.

The following example displays the count of each binding to the trace listener.

The following example lists each bindings for each site on the server.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: