IcmpV6Statistics.DestinationUnreachableMessagesSent プロパティ

定義

インターネット制御メッセージ プロトコルのバージョンの数、パケットのアドレスが到達不能を終点であるため、送信 6 (ICMPv6) メッセージを取得します。

public:
 abstract property long DestinationUnreachableMessagesSent { long get(); };
public abstract long DestinationUnreachableMessagesSent { get; }
member this.DestinationUnreachableMessagesSent : int64
Public MustOverride ReadOnly Property DestinationUnreachableMessagesSent As Long

プロパティ値

送信した終点到達不能メッセージの合計数を示す Int64 値。

次の例では、このプロパティの値を表示します。

void ShowIcmpV6UnreachableData()
{
   IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
   IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics();
   Console::WriteLine( "  Destination Unreachables ............ Sent: {0,-10}   Received: {1,-10}", 
      statistics->DestinationUnreachableMessagesSent, 
      statistics->DestinationUnreachableMessagesReceived );
}
public static void ShowIcmpV6UnreachableData ()
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    IcmpV6Statistics statistics = properties.GetIcmpV6Statistics();
    Console.WriteLine ("  Destination Unreachables ............ Sent: {0,-10}   Received: {1,-10}",
        statistics.DestinationUnreachableMessagesSent, statistics.DestinationUnreachableMessagesReceived);
}
Public Shared Sub ShowIcmpV6UnreachableData() 
    Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
    Dim statistics As IcmpV6Statistics = properties.GetIcmpV6Statistics()
    Console.WriteLine("  Destination Unreachables ............ Sent: {0,-10}   Received: {1,-10}", statistics.DestinationUnreachableMessagesSent, statistics.DestinationUnreachableMessagesReceived)

End Sub

注釈

宛先到達不能メッセージは、次のいずれかの理由により、パケットの送信元であるコンピューターに送信できます。

  • コンピューターが宛先アドレスへのルートを見つけることができません。

  • 宛先アドレスとの通信は管理上禁止されています。 たとえば、ファイアウォールによって宛先へのパケットの配信が禁止されます。

  • 宛先アドレスに到達できません。

  • 宛先ポートに到達できません。 たとえば、パケットのプロトコルに使用できるリスナーはありません。

適用対象