| File: System\Net\NetworkInformation\IPv6InterfaceProperties.cs | Web Access |
| Project: src\runtime\src\libraries\System.Net.NetworkInformation\src\System.Net.NetworkInformation.csproj (System.Net.NetworkInformation) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Runtime.Versioning; namespace System.Net.NetworkInformation { /// <summary> /// Provides information about network interfaces that support Internet Protocol (IP) version 6.0. /// </summary> public abstract class IPv6InterfaceProperties { /// <summary> /// Gets the interface index for the Internet Protocol (IP) address. /// </summary> public abstract int Index { get; } /// <summary> /// Gets the maximum transmission unit (MTU) for this network interface. /// </summary> public abstract int Mtu { get; } /// <summary> /// Returns IPv6 scope identifiers. /// </summary> /// <param name="scopeLevel">The scope level.</param> /// <returns>The IPv6 scope identifier.</returns> [UnsupportedOSPlatform("osx")] [UnsupportedOSPlatform("ios")] [UnsupportedOSPlatform("tvos")] [UnsupportedOSPlatform("freebsd")] public virtual long GetScopeId(ScopeLevel scopeLevel) { throw NotImplemented.ByDesignWithMessage(SR.net_MethodNotImplementedException); } } }