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