C# IPAddress IsIPv6Teredo
Description
IPAddress IsIPv6Teredo
Gets whether the address is an
IPv6 Teredo address.
Syntax
IPAddress.IsIPv6Teredo
has the following syntax.
public bool IsIPv6Teredo { get; }
Example
using System;/* w w w . j a va 2 s. c o m*/
using System.Net;
using System.Net.Sockets;
public class Example
{
public static void Main()
{
IPAddress address = IPAddress.Parse("127.0.0.1");
Console.WriteLine(address.IsIPv6Teredo);
}
}
The code above generates the following result.