Represents a collection of reserved IP addresses

Inheritance Hierarchy

System.ObjectSystem.ObjectSystem::Object
  System.Collections.Generic.List<DHCPReservation>System.Collections.Generic.List(Of DHCPReservation)System.Collections.Generic::List<DHCPReservation^>
    CENTREL.XIA.Network.Management.DHCP.DHCPReservationsCENTREL.XIA.Network.Management.DHCP.DHCPReservationsCENTREL::XIA::Network::Management::DHCP::DHCPReservations

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 DHCPReservationsList<DHCPReservation>

VB

Public Class DHCPReservations Inherits List(Of DHCPReservation)

C++

public ref class DHCPReservationspublic List<DHCPReservation^>

The DHCPReservationsDHCPReservationsDHCPReservations type exposes the following members.

Constructors

Name Description
DHCPReservations()New()DHCPReservations() Initializes a new instance of the DHCPReservationsDHCPReservationsDHCPReservations 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
CountCountCount Gets the number of elements actually contained in the List. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
ItemItemItem Gets or sets the element at the specified index. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
Top

Methods

Name Description
Add(DHCPReservation)Add(DHCPReservation)Add(DHCPReservation^) Adds an object to the end of the List. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
AddRange(IEnumerable<DHCPReservation>)AddRange(IEnumerable(Of DHCPReservation))AddRange(IEnumerable<DHCPReservation^>^) Adds the elements of the specified collection to the end of the List. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
AsReadOnly()AsReadOnly()AsReadOnly() Returns a read-only IList wrapper for the current collection. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
BinarySearch(DHCPReservation)BinarySearch(DHCPReservation)BinarySearch(DHCPReservation^) Searches the entire sorted List for an element using the default comparer and returns the zero-based index of the element. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
BinarySearch(DHCPReservation, IComparer<DHCPReservation>)BinarySearch(DHCPReservation, IComparer(Of DHCPReservation))BinarySearch(DHCPReservation^, IComparer<DHCPReservation^>^) Searches the entire sorted List for an element using the specified comparer and returns the zero-based index of the element. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
BinarySearch(int, int, DHCPReservation, IComparer<DHCPReservation>)BinarySearch(Integer, Integer, DHCPReservation, IComparer(Of DHCPReservation))BinarySearch(int, int, DHCPReservation^, IComparer<DHCPReservation^>^) 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
Clear()Clear()Clear() Removes all elements from the List. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
Contains(DHCPReservation)Contains(DHCPReservation)Contains(DHCPReservation^) Determines whether an element is in the List. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
ConvertAll<TOutput>(Converter<DHCPReservation, TOutput>)ConvertAll(Of TOutput)(Converter(Of DHCPReservation, TOutput))ConvertAll<TOutput>(Converter<DHCPReservation^, TOutput>^) Converts the elements in the current List to another type, and returns a list containing the converted elements. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
CopyTo(DHCPReservation[])CopyTo(DHCPReservation())CopyTo(array<DHCPReservation^>^) Copies the entire List to a compatible one-dimensional array, starting at the beginning of the target array. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
CopyTo(DHCPReservation[], int)CopyTo(DHCPReservation(), Integer)CopyTo(array<DHCPReservation^>^, int) Copies the entire List to a compatible one-dimensional array, starting at the specified index of the target array. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
CopyTo(int, DHCPReservation[], int, int)CopyTo(Integer, DHCPReservation(), Integer, Integer)CopyTo(int, array<DHCPReservation^>^, 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
Equals(object)Equals(Object)Equals(Object^) Determines whether the specified Object is equal to the current Object. (Inherited from ObjectObjectObject.)
Exists(Predicate<DHCPReservation>)Exists(Predicate(Of DHCPReservation))Exists(Predicate<DHCPReservation^>^) Determines whether the List contains elements that match the conditions defined by the specified predicate. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
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<DHCPReservation>)Find(Predicate(Of DHCPReservation))Find(Predicate<DHCPReservation^>^) 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
FindAll(Predicate<DHCPReservation>)FindAll(Predicate(Of DHCPReservation))FindAll(Predicate<DHCPReservation^>^) Retrieves all the elements that match the conditions defined by the specified predicate. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
FindIndex(Predicate<DHCPReservation>)FindIndex(Predicate(Of DHCPReservation))FindIndex(Predicate<DHCPReservation^>^) 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
FindIndex(int, Predicate<DHCPReservation>)FindIndex(Integer, Predicate(Of DHCPReservation))FindIndex(int, Predicate<DHCPReservation^>^) 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
FindIndex(int, int, Predicate<DHCPReservation>)FindIndex(Integer, Integer, Predicate(Of DHCPReservation))FindIndex(int, int, Predicate<DHCPReservation^>^) 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
FindLast(Predicate<DHCPReservation>)FindLast(Predicate(Of DHCPReservation))FindLast(Predicate<DHCPReservation^>^) 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
FindLastIndex(Predicate<DHCPReservation>)FindLastIndex(Predicate(Of DHCPReservation))FindLastIndex(Predicate<DHCPReservation^>^) 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
FindLastIndex(int, Predicate<DHCPReservation>)FindLastIndex(Integer, Predicate(Of DHCPReservation))FindLastIndex(int, Predicate<DHCPReservation^>^) 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
FindLastIndex(int, int, Predicate<DHCPReservation>)FindLastIndex(Integer, Integer, Predicate(Of DHCPReservation))FindLastIndex(int, int, Predicate<DHCPReservation^>^) 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
ForEach(Action<DHCPReservation>)ForEach(Action(Of DHCPReservation))ForEach(Action<DHCPReservation^>^) Performs the specified action on each element of the List. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
GetEnumerator()GetEnumerator()GetEnumerator() Returns an enumerator that iterates through the List. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
GetType()GetType()GetType() Gets the Type of the current instance. (Inherited from ObjectObjectObject.)
IndexOf(DHCPReservation)IndexOf(DHCPReservation)IndexOf(DHCPReservation^) Searches for the specified object and returns the zero-based index of the first occurrence within the entire List. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
IndexOf(DHCPReservation, int)IndexOf(DHCPReservation, Integer)IndexOf(DHCPReservation^, 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
IndexOf(DHCPReservation, int, int)IndexOf(DHCPReservation, Integer, Integer)IndexOf(DHCPReservation^, 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
Insert(int, DHCPReservation)Insert(Integer, DHCPReservation)Insert(int, DHCPReservation^) Inserts an element into the List at the specified index. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
InsertRange(int, IEnumerable<DHCPReservation>)InsertRange(Integer, IEnumerable(Of DHCPReservation))InsertRange(int, IEnumerable<DHCPReservation^>^) Inserts the elements of a collection into the List at the specified index. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
LastIndexOf(DHCPReservation)LastIndexOf(DHCPReservation)LastIndexOf(DHCPReservation^) Searches for the specified object and returns the zero-based index of the last occurrence within the entire List. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
LastIndexOf(DHCPReservation, int)LastIndexOf(DHCPReservation, Integer)LastIndexOf(DHCPReservation^, 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
LastIndexOf(DHCPReservation, int, int)LastIndexOf(DHCPReservation, Integer, Integer)LastIndexOf(DHCPReservation^, 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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
MemberwiseClone()MemberwiseClone()MemberwiseClone() Creates a shallow copy of the current Object. (Inherited from ObjectObjectObject.)
Remove(DHCPReservation)Remove(DHCPReservation)Remove(DHCPReservation^) Removes the first occurrence of a specific object from the List. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
RemoveAll(Predicate<DHCPReservation>)RemoveAll(Predicate(Of DHCPReservation))RemoveAll(Predicate<DHCPReservation^>^) Removes the all the elements that match the conditions defined by the specified predicate. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
RemoveAt(int)RemoveAt(Integer)RemoveAt(int) Removes the element at the specified index of the List. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
RemoveRange(int, int)RemoveRange(Integer, Integer)RemoveRange(int, int) Removes a range of elements from the List. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
Reverse()Reverse()Reverse() Reverses the order of the elements in the entire List. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
Reverse(int, int)Reverse(Integer, Integer)Reverse(int, int) Reverses the order of the elements in the specified range. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
Sort()Sort()Sort() Sorts the elements in the entire List using the default comparer. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
Sort(Comparison<DHCPReservation>)Sort(Comparison(Of DHCPReservation))Sort(Comparison<DHCPReservation^>^) Sorts the elements in the entire List using the specified Comparison. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
Sort(IComparer<DHCPReservation>)Sort(IComparer(Of DHCPReservation))Sort(IComparer<DHCPReservation^>^) Sorts the elements in the entire List using the specified comparer. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
Sort(int, int, IComparer<DHCPReservation>)Sort(Integer, Integer, IComparer(Of DHCPReservation))Sort(int, int, IComparer<DHCPReservation^>^) Sorts the elements in a range of elements in List using the specified comparer. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
ToArray()ToArray()ToArray() Copies the elements of the List to a new array. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
ToString()ToString()ToString() Returns a String that represents the current Object. (Inherited from ObjectObjectObject.)
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<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
TrueForAll(Predicate<DHCPReservation>)TrueForAll(Predicate(Of DHCPReservation))TrueForAll(Predicate<DHCPReservation^>^) Determines whether every element in the List matches the conditions defined by the specified predicate. (Inherited from List<DHCPReservation>List(Of DHCPReservation)List<DHCPReservation^>.)
Top

See Also

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