Aracılığıyla paylaş


IcmpV4Statistics.SourceQuenchesSent Özellik

Tanım

Gönderilen İnternet Denetim İletisi Protokolü sürüm 4 (ICMPv4) Kaynak Yanıt verme iletilerinin sayısını alır.

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

Özellik Değeri

Int64 Gönderilen Kaynak Denetim iletilerinin toplam sayısını belirten bir değer.

Örnekler

Aşağıdaki örnekte bu özelliğin değeri görüntülenir.

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

Açıklamalar

Çıkış kuyruğundaki yetersiz alan nedeniyle bir paket atıldığında kaynak Denetim iletileri gönderilir. Paketler işlenemeyecek kadar hızlı ulaşırsa, hedef bilgisayar bir Kaynak Denetim İletisi de gönderebilir. Kaynak yanıt verme iletisi, konağa İnternet hedefine trafik gönderme hızını azaltma isteğidir.

Şunlara uygulanır