Represents a collection of DHCP option definitions

Inheritance Hierarchy

System.ObjectSystem.ObjectSystem::Object
  System.Collections.Generic.List<DHCPOptionDefinition>System.Collections.Generic.List(Of DHCPOptionDefinition)System.Collections.Generic::List<DHCPOptionDefinition^>
    CENTREL.XIA.Network.Management.DHCP.DHCPOptionDefinitionsCENTREL.XIA.Network.Management.DHCP.DHCPOptionDefinitionsCENTREL::XIA::Network::Management::DHCP::DHCPOptionDefinitions

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 DHCPOptionDefinitionsList<DHCPOptionDefinition>

VB

Public Class DHCPOptionDefinitions Inherits List(Of DHCPOptionDefinition)

C++

public ref class DHCPOptionDefinitionspublic List<DHCPOptionDefinition^>

The DHCPOptionDefinitionsDHCPOptionDefinitionsDHCPOptionDefinitions type exposes the following members.

Constructors

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

Methods

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

See Also

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