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. IPv6MulticastOption^ ipv6MulticastOption = gcnew IPv6MulticastOption( m_GrpAddr ); // Store the IPAdress multicast options. IPAddress^ group = ipv6MulticastOption->Group; __int64 interfaceIndex = ipv6MulticastOption->InterfaceIndex; // Display IPv6MulticastOption properties. Console::WriteLine( "IPv6MulticastOption::Group: [ {0}]", group ); Console::WriteLine( "IPv6MulticastOption::InterfaceIndex: [ {0}]", interfaceIndex );
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.


