Represents a list of DHCP Subnets

Inheritance Hierarchy

System.ObjectSystem.ObjectSystem::Object
  System.Collections.Generic.List<DHCPScope>System.Collections.Generic.List(Of DHCPScope)System.Collections.Generic::List<DHCPScope^>
    CENTREL.XIA.Network.Management.DHCP.DHCPScopesCENTREL.XIA.Network.Management.DHCP.DHCPScopesCENTREL::XIA::Network::Management::DHCP::DHCPScopes

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 DHCPScopesList<DHCPScope>

VB

Public Class DHCPScopes Inherits List(Of DHCPScope)

C++

public ref class DHCPScopespublic List<DHCPScope^>

The DHCPScopesDHCPScopesDHCPScopes type exposes the following members.

Constructors

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

Methods

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

See Also

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