26 lines
741 B
C#
26 lines
741 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace System.Net.NetworkInformation
|
|
{
|
|
// Token: 0x02000171 RID: 369
|
|
internal class MacOsIPInterfaceProperties : UnixIPInterfaceProperties
|
|
{
|
|
// Token: 0x06000C95 RID: 3221 RVA: 0x00025B5C File Offset: 0x00023D5C
|
|
public MacOsIPInterfaceProperties(MacOsNetworkInterface iface, List<IPAddress> addresses)
|
|
: base(iface, addresses)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000C96 RID: 3222 RVA: 0x00025B68 File Offset: 0x00023D68
|
|
public override IPv4InterfaceProperties GetIPv4Properties()
|
|
{
|
|
if (this.ipv4iface_properties == null)
|
|
{
|
|
this.ipv4iface_properties = new MacOsIPv4InterfaceProperties(this.iface as MacOsNetworkInterface);
|
|
}
|
|
return this.ipv4iface_properties;
|
|
}
|
|
}
|
|
}
|