Files
2026-06-04 11:42:34 +02:00

38 lines
774 B
C#

using System;
namespace System.Net.NetworkInformation
{
// Token: 0x0200017F RID: 383
internal class Win32IPv6InterfaceProperties : IPv6InterfaceProperties
{
// Token: 0x06000CFA RID: 3322 RVA: 0x00026214 File Offset: 0x00024414
public Win32IPv6InterfaceProperties(Win32_MIB_IFROW mib)
{
this.mib = mib;
}
// Token: 0x170003BE RID: 958
// (get) Token: 0x06000CFB RID: 3323 RVA: 0x00026224 File Offset: 0x00024424
public override int Index
{
get
{
return this.mib.Index;
}
}
// Token: 0x170003BF RID: 959
// (get) Token: 0x06000CFC RID: 3324 RVA: 0x00026234 File Offset: 0x00024434
public override int Mtu
{
get
{
return this.mib.Mtu;
}
}
// Token: 0x04000C0C RID: 3084
private Win32_MIB_IFROW mib;
}
}