IcmpV4Statistics.SourceQuenchesSent Proprietà

Definizione

Ottiene il numero di messaggi di origine ICMPv4 inviati da Internet Control Message Protocol versione 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

Valore della proprietà

Valore Int64 che specifica il numero totale di messaggi di origine quench inviati.

Esempio

Nell'esempio seguente viene visualizzato il valore di questa proprietà.

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

Commenti

I messaggi Di accodamento di origine vengono inviati quando un pacchetto è stato rimosso a causa di spazio insufficiente nella coda di output. Un computer di destinazione può anche inviare un messaggio Di accodamento di origine se i pacchetti arrivano troppo rapidamente per essere elaborati. Il messaggio di accodamento di origine è una richiesta all'host per ridurre la velocità con cui invia traffico alla destinazione Internet.

Si applica a