IcmpV4Statistics.SourceQuenchesReceived Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene il numero di messaggi Source Quench del protocollo ICMPv4 ricevuti.
public:
abstract property long SourceQuenchesReceived { long get(); };
public abstract long SourceQuenchesReceived { get; }
member this.SourceQuenchesReceived : int64
Public MustOverride ReadOnly Property SourceQuenchesReceived As Long
Valore della proprietà
Valore Int64 che specifica il numero totale di messaggi Source Quench ricevuti.
Esempio
Nell'esempio seguente viene visualizzato il valore di questa proprietà.
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
Commenti
I messaggi Di accodamento di origine vengono inviati quando un pacchetto è stato eliminato 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 frequenza con cui invia traffico alla destinazione Internet.