次の方法で共有


IcmpV4Statistics.SourceQuenchesSent プロパティ

定義

送信したインターネット コントロール メッセージ プロトコル Version 4 (ICMPv4) 発信元抑制メッセージの数を取得します。

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

プロパティ値

送信した発信元抑制メッセージの合計数を示す Int64 値。

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

void ShowSourceQuenchData()
{
   IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
   IcmpV4Statistics ^ statistics = properties->GetIcmpV4Statistics();
   Console::WriteLine( "  Source Quenches ..................... Sent: {0,-10}   Received: {1,-10}", 
      statistics->SourceQuenchesSent, 
      statistics->SourceQuenchesReceived );
}
public static void ShowSourceQuenchData()
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    IcmpV4Statistics statistics = properties.GetIcmpV4Statistics();
    Console.WriteLine("  Source Quenches ..................... Sent: {0,-10}   Received: {1,-10}",
        statistics.SourceQuenchesSent, statistics.SourceQuenchesReceived);
}
Public Shared Sub ShowSourceQuenchData() 
    Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
    Dim statistics As IcmpV4Statistics = properties.GetIcmpV4Statistics()
    Console.WriteLine("  Source Quenches ..................... Sent: {0,-10}   Received: {1,-10}", statistics.SourceQuenchesSent, statistics.SourceQuenchesReceived)

End Sub

注釈

ソース クエンチ メッセージは、出力キューの領域が不足しているためにパケットが破棄されたときに送信されます。 宛先コンピューターは、パケットの受信速度が速すぎて処理できない場合に、ソース クエンチ メッセージを送信することもできます。 ソース クエンチ メッセージは、インターネット宛先にトラフィックを送信する速度を削減するためのホストへの要求です。

適用対象