C# IPAddress IsIPv6LinkLocal
Description
IPAddress IsIPv6LinkLocal
Gets whether the address
is an IPv6 link local address.
Syntax
IPAddress.IsIPv6LinkLocal
has the following syntax.
public bool IsIPv6LinkLocal { get; }
Example
using System;/*www . j a va2 s . c o m*/
using System.Net;
using System.Net.Sockets;
public class Example
{
public static void Main()
{
Console.WriteLine(IPAddress.Loopback.IsIPv6LinkLocal);
}
}
The code above generates the following result.