Represents a list of DHCP user or vendor classes

Inheritance Hierarchy

System.ObjectSystem.ObjectSystem::Object
  System.Collections.Generic.List<DHCPClass>System.Collections.Generic.List(Of DHCPClass)System.Collections.Generic::List<DHCPClass^>
    CENTREL.XIA.Network.Management.DHCP.DHCPClassesCENTREL.XIA.Network.Management.DHCP.DHCPClassesCENTREL::XIA::Network::Management::DHCP::DHCPClasses

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 DHCPClassesList<DHCPClass>

VB

Public Class DHCPClasses Inherits List(Of DHCPClass)

C++

public ref class DHCPClassespublic List<DHCPClass^>

The DHCPClassesDHCPClassesDHCPClasses type exposes the following members.

Constructors

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

Methods

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

See Also

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