IcmpV6Statistics.NeighborSolicitsSent Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the number of Internet Control Message Protocol version 6 (ICMPv6) Neighbor Solicitation messages sent.
public:
abstract property long NeighborSolicitsSent { long get(); };
public abstract long NeighborSolicitsSent { get; }
member this.NeighborSolicitsSent : int64
Public MustOverride ReadOnly Property NeighborSolicitsSent As Long
Property Value
An Int64 value that specifies the total number of Neighbor Solicitation messages sent.
Examples
The following example displays the value of this property.
void ShowIcmpV6NeighborData()
{
IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics();
Console::WriteLine( " Advertisements ...................... Sent: {0,-10} Received: {1,-10}",
statistics->NeighborAdvertisementsSent, statistics->NeighborAdvertisementsReceived );
Console::WriteLine( " Solicits ............................ Sent: {0,-10} Received: {1,-10}",
statistics->NeighborSolicitsSent, statistics->NeighborSolicitsReceived );
}
public static void ShowIcmpV6NeighborData ()
{
IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
IcmpV6Statistics statistics = properties.GetIcmpV6Statistics();
Console.WriteLine (" Advertisements ...................... Sent: {0,-10} Received: {1,-10}",
statistics.NeighborAdvertisementsSent,statistics.NeighborAdvertisementsReceived);
Console.WriteLine (" Solicits ............................ Sent: {0,-10} Received: {1,-10}",
statistics.NeighborSolicitsSent, statistics.NeighborSolicitsReceived);
}
Public Shared Sub ShowIcmpV6NeighborData()
Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
Dim statistics As IcmpV6Statistics = properties.GetIcmpV6Statistics()
Console.WriteLine(" Advertisements ...................... Sent: {0,-10} Received: {1,-10}", statistics.NeighborAdvertisementsSent, statistics.NeighborAdvertisementsReceived)
Console.WriteLine(" Solicits ............................ Sent: {0,-10} Received: {1,-10}", statistics.NeighborSolicitsSent, statistics.NeighborSolicitsReceived)
End Sub
Remarks
Neighbor Discovery is a process whereby host computers and routers can determine the addresses for neighbors known to reside on shared links. Part of this discovery process is accomplished using ICMP messages called Neighbor Solicitations and Neighbor Advertisements. Neighbor Solicitation messages are sent to discover the link-layer address of a neighbor or to verify that a neighbor is still reachable via a cached link-layer address. A Neighbor Advertisement that contains address information is sent in response to a solicitation or to announce an address change.