using System;
namespace System.Net.NetworkInformation
{
/// Specifies the current state of an IP address.
// Token: 0x02000156 RID: 342
public enum DuplicateAddressDetectionState
{
/// 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.
// Token: 0x04000B92 RID: 2962
Invalid,
/// 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.
// Token: 0x04000B93 RID: 2963
Tentative,
/// The address is not unique. This address should not be assigned to the network interface.
// Token: 0x04000B94 RID: 2964
Duplicate,
/// The address is valid, but it is nearing its lease lifetime and should not be used by applications.
// Token: 0x04000B95 RID: 2965
Deprecated,
/// The address is valid and its use is unrestricted.
// Token: 0x04000B96 RID: 2966
Preferred
}
}