scripts
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
|
||||
namespace System.Net.NetworkInformation
|
||||
{
|
||||
// Token: 0x02000158 RID: 344
|
||||
internal class GatewayIPAddressInformationImpl : GatewayIPAddressInformation
|
||||
{
|
||||
// Token: 0x06000B9B RID: 2971 RVA: 0x00023B50 File Offset: 0x00021D50
|
||||
public GatewayIPAddressInformationImpl(IPAddress address)
|
||||
{
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
// Token: 0x170002EA RID: 746
|
||||
// (get) Token: 0x06000B9C RID: 2972 RVA: 0x00023B60 File Offset: 0x00021D60
|
||||
public override IPAddress Address
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.address;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x04000B97 RID: 2967
|
||||
private IPAddress address;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user