IPv6MulticastOption Class
Contains option values for joining an IPv6 multicast group.
Assembly: System (in System.dll)
| Name | Description | |
|---|---|---|
![]() | IPv6MulticastOption(IPAddress) | Initializes a new version of the IPv6MulticastOption class for the specified IP multicast group. |
![]() | IPv6MulticastOption(IPAddress, Int64) | Initializes a new instance of the IPv6MulticastOption class with the specified IP multicast group and the local interface address. |
| Name | Description | |
|---|---|---|
![]() | Group | Gets or sets the IP address of a multicast group. |
![]() | InterfaceIndex | Gets or sets the interface index that is associated with a multicast group. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The following example creates an IPv6MulticastOption object.
' Exercise the use of the IPv6MulticastOption. Console.WriteLine("Instantiate IPv6MulticastOption(IPAddress)") ' Instantiate IPv6MulticastOption using one of the ' overloaded constructors. Dim ipv6MulticastOption As New IPv6MulticastOption(m_GrpAddr) ' Store the IPAdress multicast options. Dim group As IPAddress = ipv6MulticastOption.Group Dim interfaceIndex As Long = ipv6MulticastOption.InterfaceIndex ' Display IPv6MulticastOption properties. Console.WriteLine(("IPv6MulticastOption.Group: [" + group.ToString() + "]")) Console.WriteLine(("IPv6MulticastOption.InterfaceIndex: [" + interfaceIndex.ToString() + "]"))
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


