C# IPAddress IsIPv6Multicast
Description
IPAddress IsIPv6Multicast
Gets whether the address
is an IPv6 multicast global address.
Syntax
IPAddress.IsIPv6Multicast
has the following syntax.
public bool IsIPv6Multicast { get; }
Example
// w w w . ja va2s .c o m
using System;
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.IsIPv6Multicast);
}
}
The code above generates the following result.