다음을 통해 공유


IcmpV4Statistics.SourceQuenchesSent 속성

정의

보낸 ICMPv4(Internet Control Message Protocol 버전 4) Source Quench 메시지의 수를 가져옵니다.

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

속성 값

보낸 Source Quench 메시지의 총 수를 나타내는 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

설명

원본 Quench 메시지는 출력 큐의 공간이 부족하여 패킷이 삭제될 때 전송됩니다. 패킷이 너무 빨리 도착하여 처리할 수 없는 경우 대상 컴퓨터에서 원본 Quench 메시지를 보낼 수도 있습니다. 원본 담금질 메시지는 인터넷 대상으로 트래픽을 보내는 속도를 줄이기 위해 호스트에 대한 요청입니다.

적용 대상