OpenNETCF Smart Device Framework 2.2
Specifies the current state of an IP address.
Namespace:
OpenNETCF.Net.NetworkInformationAssembly: OpenNETCF.Net (in OpenNETCF.Net)
Version: 2.2.0.0
Syntax
| C# |
|---|
public enum DuplicateAddressDetectionState |
| Visual Basic (Declaration) |
|---|
Public Enumeration DuplicateAddressDetectionState |
| Visual Basic (Usage) |
|---|
Dim instance As DuplicateAddressDetectionState |
| Visual C++ |
|---|
public enum class DuplicateAddressDetectionState |
| J# |
|---|
public enum DuplicateAddressDetectionState |
| JScript |
|---|
public enum DuplicateAddressDetectionState |
Members
| Member name | Description | |
|---|---|---|
| Invalid |
The address is not valid. A nonvalid address is expired and no longer assigned
to an interface; applications should not send data packets to it.
| |
| Tentative |
The duplicate address detection procedure's evaluation of the address has
not completed successfully. Applications should not use the address because
it is not yet valid and packets sent to it are discarded.
| |
| Duplicate |
The address is not unique. This address should not be assigned to the network
interface.
| |
| Deprecated |
The address is valid, but it is nearing its lease lifetime and should not
be used by applications.
| |
| Preferred |
The address is valid and its use is unrestricted.
|