IPv6MulticastOption.InterfaceIndex Eigenschap

Definitie

Hiermee haalt u de interface-index op die is gekoppeld aan een multicastgroep of stelt u deze in.

public:
 property long InterfaceIndex { long get(); void set(long value); };
public long InterfaceIndex { get; set; }
member this.InterfaceIndex : int64 with get, set
Public Property InterfaceIndex As Long

Waarde van eigenschap

Een UInt64 waarde die het adres van de interface aangeeft.

Uitzonderingen

De waarde die is opgegeven voor een setbewerking is kleiner dan 0 of groter dan 0x00000000FFFFFFFF.

Voorbeelden

In het volgende voorbeeld wordt een IPv6MulticastOption object gemaakt.

// Exercise the use of the IPv6MulticastOption.
Console.WriteLine("Instantiate IPv6MulticastOption(IPAddress)");

// Instantiate IPv6MulticastOption using one of the
// overloaded constructors.
IPv6MulticastOption ipv6MulticastOption = new IPv6MulticastOption(m_GrpAddr);

// Store the IPAdress multicast options.
IPAddress group =  ipv6MulticastOption.Group;
long interfaceIndex = ipv6MulticastOption.InterfaceIndex;

// Display IPv6MulticastOption properties.
Console.WriteLine("IPv6MulticastOption.Group: [" + group  + "]");
Console.WriteLine("IPv6MulticastOption.InterfaceIndex: [" + interfaceIndex + "]");
' 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() + "]"))

Opmerkingen

Met deze eigenschap geeft u de interface op waarop gegevens worden ontvangen of verzonden.

Van toepassing op