Edit

Share via


IcmpV4Statistics.DestinationUnreachableMessagesReceived Property

Definition

Gets the number of Internet Control Message Protocol version 4 (ICMPv4) messages that were received because of a packet having an unreachable address in its destination.

public abstract long DestinationUnreachableMessagesReceived { get; }

Property Value

An Int64 value that specifies the total number of Destination Unreachable messages that were received.

Examples

The following example displays the value of this property.

public static void ShowIcmpV4UnreachableData()
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    IcmpV4Statistics statistics = properties.GetIcmpV4Statistics();
    Console.WriteLine("  Destination Unreachables ............ Sent: {0,-10}   Received: {1,-10}",
        statistics.DestinationUnreachableMessagesSent,
        statistics.DestinationUnreachableMessagesReceived);
}

Remarks

A Destination Unreachable message can be sent to the computer that is the source of a packet for any of the following reasons:

  • The computer cannot find a route to the destination address.

  • Communication with the destination address is administratively prohibited. For example, a firewall prevents delivery of packets to the destination.

  • The destination address is unreachable.

  • The destination port is unreachable. For example, there is no listener available for the packet's protocol.

Applies to

Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1