Represents a collection of IP address bindings on a DHCP server

Inheritance Hierarchy

System.ObjectSystem.ObjectSystem::Object
  System.Collections.Generic.List<DHCPBinding>System.Collections.Generic.List(Of DHCPBinding)System.Collections.Generic::List<DHCPBinding^>
    CENTREL.XIA.Network.Management.DHCP.DHCPBindingsCENTREL.XIA.Network.Management.DHCP.DHCPBindingsCENTREL::XIA::Network::Management::DHCP::DHCPBindings

Namespace: CENTREL.XIA.Network.Management.DHCPCENTREL.XIA.Network.Management.DHCPCENTREL::XIA::Network::Management::DHCP
Assembly: CENTREL.XIA.Network.Management.DHCP (in CENTREL.XIA.Network.Management.DHCP.dll)

Syntax

C#

public class DHCPBindingsList<DHCPBinding>

VB

Public Class DHCPBindings Inherits List(Of DHCPBinding)

C++

public ref class DHCPBindingspublic List<DHCPBinding^>

The DHCPBindingsDHCPBindingsDHCPBindings type exposes the following members.

Constructors

Name Description
DHCPBindings()New()DHCPBindings() Initializes a new instance of the DHCPBindingsDHCPBindingsDHCPBindings class.
Top

Properties

Name Description
CapacityCapacityCapacity Gets or sets the total number of elements the internal data structure can hold without resizing. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
CountCountCount Gets the number of elements actually contained in the List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
ItemItemItem Gets or sets the element at the specified index. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
Top

Methods

Name Description
Add(DHCPBinding)Add(DHCPBinding)Add(DHCPBinding^) Adds an object to the end of the List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
AddRange(IEnumerable<DHCPBinding>)AddRange(IEnumerable(Of DHCPBinding))AddRange(IEnumerable<DHCPBinding^>^) Adds the elements of the specified collection to the end of the List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
AsReadOnly()AsReadOnly()AsReadOnly() Returns a read-only IList wrapper for the current collection. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
BinarySearch(DHCPBinding)BinarySearch(DHCPBinding)BinarySearch(DHCPBinding^) Searches the entire sorted List for an element using the default comparer and returns the zero-based index of the element. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
BinarySearch(DHCPBinding, IComparer<DHCPBinding>)BinarySearch(DHCPBinding, IComparer(Of DHCPBinding))BinarySearch(DHCPBinding^, IComparer<DHCPBinding^>^) Searches the entire sorted List for an element using the specified comparer and returns the zero-based index of the element. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
BinarySearch(int, int, DHCPBinding, IComparer<DHCPBinding>)BinarySearch(Integer, Integer, DHCPBinding, IComparer(Of DHCPBinding))BinarySearch(int, int, DHCPBinding^, IComparer<DHCPBinding^>^) Searches a range of elements in the sorted List for an element using the specified comparer and returns the zero-based index of the element. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
Clear()Clear()Clear() Removes all elements from the List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
Contains(DHCPBinding)Contains(DHCPBinding)Contains(DHCPBinding^) Determines whether an element is in the List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
ConvertAll<TOutput>(Converter<DHCPBinding, TOutput>)ConvertAll(Of TOutput)(Converter(Of DHCPBinding, TOutput))ConvertAll<TOutput>(Converter<DHCPBinding^, TOutput>^) Converts the elements in the current List to another type, and returns a list containing the converted elements. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
CopyTo(DHCPBinding[])CopyTo(DHCPBinding())CopyTo(array<DHCPBinding^>^) Copies the entire List to a compatible one-dimensional array, starting at the beginning of the target array. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
CopyTo(DHCPBinding[], int)CopyTo(DHCPBinding(), Integer)CopyTo(array<DHCPBinding^>^, int) Copies the entire List to a compatible one-dimensional array, starting at the specified index of the target array. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
CopyTo(int, DHCPBinding[], int, int)CopyTo(Integer, DHCPBinding(), Integer, Integer)CopyTo(int, array<DHCPBinding^>^, int, int) Copies a range of elements from the List to a compatible one-dimensional array, starting at the specified index of the target array. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
Equals(object)Equals(Object)Equals(Object^) Determines whether the specified Object is equal to the current Object. (Inherited from ObjectObjectObject.)
Exists(Predicate<DHCPBinding>)Exists(Predicate(Of DHCPBinding))Exists(Predicate<DHCPBinding^>^) Determines whether the List contains elements that match the conditions defined by the specified predicate. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
Finalize()Finalize()Finalize() Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from ObjectObjectObject.)
Find(Predicate<DHCPBinding>)Find(Predicate(Of DHCPBinding))Find(Predicate<DHCPBinding^>^) Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
FindAll(Predicate<DHCPBinding>)FindAll(Predicate(Of DHCPBinding))FindAll(Predicate<DHCPBinding^>^) Retrieves all the elements that match the conditions defined by the specified predicate. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
FindIndex(Predicate<DHCPBinding>)FindIndex(Predicate(Of DHCPBinding))FindIndex(Predicate<DHCPBinding^>^) Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the entire List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
FindIndex(int, Predicate<DHCPBinding>)FindIndex(Integer, Predicate(Of DHCPBinding))FindIndex(int, Predicate<DHCPBinding^>^) Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the List that extends from the specified index to the last element. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
FindIndex(int, int, Predicate<DHCPBinding>)FindIndex(Integer, Integer, Predicate(Of DHCPBinding))FindIndex(int, int, Predicate<DHCPBinding^>^) Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the List that starts at the specified index and contains the specified number of elements. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
FindLast(Predicate<DHCPBinding>)FindLast(Predicate(Of DHCPBinding))FindLast(Predicate<DHCPBinding^>^) Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
FindLastIndex(Predicate<DHCPBinding>)FindLastIndex(Predicate(Of DHCPBinding))FindLastIndex(Predicate<DHCPBinding^>^) Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the entire List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
FindLastIndex(int, Predicate<DHCPBinding>)FindLastIndex(Integer, Predicate(Of DHCPBinding))FindLastIndex(int, Predicate<DHCPBinding^>^) Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the List that extends from the first element to the specified index. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
FindLastIndex(int, int, Predicate<DHCPBinding>)FindLastIndex(Integer, Integer, Predicate(Of DHCPBinding))FindLastIndex(int, int, Predicate<DHCPBinding^>^) Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the List that contains the specified number of elements and ends at the specified index. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
ForEach(Action<DHCPBinding>)ForEach(Action(Of DHCPBinding))ForEach(Action<DHCPBinding^>^) Performs the specified action on each element of the List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
GetEnumerator()GetEnumerator()GetEnumerator() Returns an enumerator that iterates through the List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
GetHashCode()GetHashCode()GetHashCode() Serves as a hash function for a particular type. (Inherited from ObjectObjectObject.)
GetRange(int, int)GetRange(Integer, Integer)GetRange(int, int) Creates a shallow copy of a range of elements in the source List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
GetType()GetType()GetType() Gets the Type of the current instance. (Inherited from ObjectObjectObject.)
IndexOf(DHCPBinding)IndexOf(DHCPBinding)IndexOf(DHCPBinding^) Searches for the specified object and returns the zero-based index of the first occurrence within the entire List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
IndexOf(DHCPBinding, int)IndexOf(DHCPBinding, Integer)IndexOf(DHCPBinding^, int) Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the List that extends from the specified index to the last element. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
IndexOf(DHCPBinding, int, int)IndexOf(DHCPBinding, Integer, Integer)IndexOf(DHCPBinding^, int, int) Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the List that starts at the specified index and contains the specified number of elements. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
Insert(int, DHCPBinding)Insert(Integer, DHCPBinding)Insert(int, DHCPBinding^) Inserts an element into the List at the specified index. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
InsertRange(int, IEnumerable<DHCPBinding>)InsertRange(Integer, IEnumerable(Of DHCPBinding))InsertRange(int, IEnumerable<DHCPBinding^>^) Inserts the elements of a collection into the List at the specified index. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
LastIndexOf(DHCPBinding)LastIndexOf(DHCPBinding)LastIndexOf(DHCPBinding^) Searches for the specified object and returns the zero-based index of the last occurrence within the entire List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
LastIndexOf(DHCPBinding, int)LastIndexOf(DHCPBinding, Integer)LastIndexOf(DHCPBinding^, int) Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the List that extends from the first element to the specified index. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
LastIndexOf(DHCPBinding, int, int)LastIndexOf(DHCPBinding, Integer, Integer)LastIndexOf(DHCPBinding^, int, int) Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the List that contains the specified number of elements and ends at the specified index. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
MemberwiseClone()MemberwiseClone()MemberwiseClone() Creates a shallow copy of the current Object. (Inherited from ObjectObjectObject.)
Remove(DHCPBinding)Remove(DHCPBinding)Remove(DHCPBinding^) Removes the first occurrence of a specific object from the List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
RemoveAll(Predicate<DHCPBinding>)RemoveAll(Predicate(Of DHCPBinding))RemoveAll(Predicate<DHCPBinding^>^) Removes the all the elements that match the conditions defined by the specified predicate. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
RemoveAt(int)RemoveAt(Integer)RemoveAt(int) Removes the element at the specified index of the List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
RemoveRange(int, int)RemoveRange(Integer, Integer)RemoveRange(int, int) Removes a range of elements from the List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
Reverse()Reverse()Reverse() Reverses the order of the elements in the entire List. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
Reverse(int, int)Reverse(Integer, Integer)Reverse(int, int) Reverses the order of the elements in the specified range. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
Sort()Sort()Sort() Sorts the elements in the entire List using the default comparer. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
Sort(Comparison<DHCPBinding>)Sort(Comparison(Of DHCPBinding))Sort(Comparison<DHCPBinding^>^) Sorts the elements in the entire List using the specified Comparison. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
Sort(IComparer<DHCPBinding>)Sort(IComparer(Of DHCPBinding))Sort(IComparer<DHCPBinding^>^) Sorts the elements in the entire List using the specified comparer. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
Sort(int, int, IComparer<DHCPBinding>)Sort(Integer, Integer, IComparer(Of DHCPBinding))Sort(int, int, IComparer<DHCPBinding^>^) Sorts the elements in a range of elements in List using the specified comparer. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
ToArray()ToArray()ToArray() Copies the elements of the List to a new array. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
ToString()ToString()ToString() Returns a human readable version of all bindings within the collection - for example "192.168.1.5 [Local Area Connection] 192.168.1.12 [Local Area Connection 2]" with each binding displayed on a separate line. (Overrides Object.ToString()Object.ToString()Object::ToString().)
TrimExcess()TrimExcess()TrimExcess() Sets the capacity to the actual number of elements in the List, if that number is less than a threshold value. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
TrueForAll(Predicate<DHCPBinding>)TrueForAll(Predicate(Of DHCPBinding))TrueForAll(Predicate<DHCPBinding^>^) Determines whether every element in the List matches the conditions defined by the specified predicate. (Inherited from List<DHCPBinding>List(Of DHCPBinding)List<DHCPBinding^>.)
Top

See Also

CENTREL.XIA.Network.Management.DHCPCENTREL.XIA.Network.Management.DHCPCENTREL::XIA::Network::Management::DHCP Namespace