This documentation is archived and is not being maintained.
IPv6MulticastOption Class
Visual Studio 2010
Contains option values for joining an IPv6 multicast group.
Assembly: System (in System.dll)
The IPv6MulticastOption type exposes the following members.
| 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 a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | 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 );
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show:
