22 lines
902 B
C#
22 lines
902 B
C#
using System;
|
|
|
|
namespace System.Net.NetworkInformation
|
|
{
|
|
/// <summary>Provides information about network interfaces that support Internet Protocol version 6 (IPv6).</summary>
|
|
// Token: 0x0200017E RID: 382
|
|
public abstract class IPv6InterfaceProperties
|
|
{
|
|
/// <summary>Gets the index of the network interface associated with the Internet Protocol version 6 (IPv6) address.</summary>
|
|
/// <returns>An <see cref="T:System.Int32" /> value that contains the index of the IPv6 interface.</returns>
|
|
// Token: 0x170003BC RID: 956
|
|
// (get) Token: 0x06000CF8 RID: 3320
|
|
public abstract int Index { get; }
|
|
|
|
/// <summary>Gets the maximum transmission unit (MTU) for this network interface.</summary>
|
|
/// <returns>An <see cref="T:System.Int64" /> value that specifies the MTU.</returns>
|
|
// Token: 0x170003BD RID: 957
|
|
// (get) Token: 0x06000CF9 RID: 3321
|
|
public abstract int Mtu { get; }
|
|
}
|
|
}
|