BindingCollection Class
Namespace: Rebex.Net.Servers
Assembly: Rebex.FileServer.dll (version 7.0.9083)
A collection of server bindings.
Syntax
public class BindingCollection : ICollection<Binding>, IEnumerable<Binding>, IEnumerable
Inherited Members
Properties
Name | Description |
---|---|
Count | Returns the number of bindings. |
Methods
Name | Description |
---|---|
GetBindings(ServerModule) | Returns a collection of bindings for the specified module. |
GetBindings(Int32) | Returns a collection of bindings for the specified port. |
GetBindings(EndPoint) | Returns a collection of bindings for the specified endpoint. |
GetBindings(IPAddress) | Returns a collection of bindings for the specified address. |
GetEnumerator() | Returns an enumerator that iterates through all the bindings in the collection. |
Explicit Interface Implementations
Name | Description |
---|---|
ICollection<Binding>.Add(Binding) | Not supported. Throws NotSupportedException. |
ICollection<Binding>.Clear() | Not supported. Throws NotSupportedException. |
ICollection<Binding>.Contains(Binding) | Gets a value indicating whether the collection contains the specified item. |
ICollection<Binding>.CopyTo(Binding[], Int32) | Copies the range of elements from the collection to a one-dimensional Binding array, starting at the specified index of the target array. |
ICollection<Binding>.IsReadOnly | Returns true. |
ICollection<Binding>.Remove(Binding) | Not supported. Throws NotSupportedException. |
IEnumerable.GetEnumerator() | Returns an enumerator that iterates through the collection. |