using System;
namespace System.Net.NetworkInformation
{
/// Provides information about network interfaces that support Internet Protocol version 6 (IPv6).
// Token: 0x0200017E RID: 382
public abstract class IPv6InterfaceProperties
{
/// Gets the index of the network interface associated with the Internet Protocol version 6 (IPv6) address.
/// An value that contains the index of the IPv6 interface.
// Token: 0x170003BC RID: 956
// (get) Token: 0x06000CF8 RID: 3320
public abstract int Index { get; }
/// Gets the maximum transmission unit (MTU) for this network interface.
/// An value that specifies the MTU.
// Token: 0x170003BD RID: 957
// (get) Token: 0x06000CF9 RID: 3321
public abstract int Mtu { get; }
}
}