Свойство | Тип | Описание | |
---|---|---|---|
AllInterfaces | IList |
Свойство | Тип | Описание | |
---|---|---|---|
_ints |
Метод | Описание | |
---|---|---|
GetAddresses ( ) : IList |
This is the system depedent part of the code. It should call look up address information and place it into an IList.
|
|
GetEnumerator ( ) : IEnumerator |
To be of type IEnumerable, here is the Enumerator. This enumerates through the IList given by GetIPAddresses
|
|
GetIPAddresses ( ) : |
Automatically chooses which version of IPAddresses to instantiate. This version looks up all the interfaces for the host
|
|
GetIPAddresses ( string interfaces ) : |
Automatically chooses which version of IPAddresses to instantiate. This version of the constructor allows you to choose which interfaces to look up
|
|
IPAddresses ( ) : System |
Used to look up all interfaces
|
|
IPAddresses ( string interfaces ) : System |
Used to look up specific list of interfaces. This should not be called directly use GetIPAddresses(string[] interfaces)
|
|
Print ( ) : void |
Prints the IPAddresses IList to the console.
|
Метод | Описание | |
---|---|---|
AddIfMatch ( |
Called by GetAddresses to add the value to the correct place in the hashtable.
|
protected AddIfMatch ( |
||
re | The regular expression to match. | |
line | string | The line to check. |
ht | The hashtable to store the data if their is a match. | |
key | string | Position in the key in the hashtable to store the result |
Результат | bool |
public static GetIPAddresses ( ) : |
||
Результат |
public static GetIPAddresses ( string interfaces ) : |
||
interfaces | string | An array of interfaces to look up, |
Результат |
public IPAddresses ( string interfaces ) : System | ||
interfaces | string | A list of interfaces to look up |
Результат | System |