35 lines
721 B
C#
35 lines
721 B
C#
using System;
|
|
|
|
namespace System.Net.NetworkInformation
|
|
{
|
|
// Token: 0x02000177 RID: 375
|
|
internal sealed class MacOsIPv4InterfaceProperties : UnixIPv4InterfaceProperties
|
|
{
|
|
// Token: 0x06000CB5 RID: 3253 RVA: 0x00025EDC File Offset: 0x000240DC
|
|
public MacOsIPv4InterfaceProperties(MacOsNetworkInterface iface)
|
|
: base(iface)
|
|
{
|
|
}
|
|
|
|
// Token: 0x17000383 RID: 899
|
|
// (get) Token: 0x06000CB6 RID: 3254 RVA: 0x00025EE8 File Offset: 0x000240E8
|
|
public override bool IsForwardingEnabled
|
|
{
|
|
get
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17000384 RID: 900
|
|
// (get) Token: 0x06000CB7 RID: 3255 RVA: 0x00025EEC File Offset: 0x000240EC
|
|
public override int Mtu
|
|
{
|
|
get
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
}
|