Condividi tramite


IcmpV6Statistics.PacketTooBigMessagesSent Proprietà

Definizione

Ottiene il numero di messaggi Packet Too Big del protocollo ICMPv6 inviati.

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

Valore della proprietà

Valore Int64 che specifica il numero totale di messaggi Packet Too Big del protocollo ICMP inviati.

Esempio

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

void ShowIcmpV6BigPacketData()
{
   IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
   IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics();
   Console::WriteLine( " Too Big Packet ........................ Sent: {0,-10}   Received: {1,-10}", 
      statistics->PacketTooBigMessagesSent, 
      statistics->PacketTooBigMessagesReceived );
}
public static void ShowIcmpV6BigPacketData ()
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    IcmpV6Statistics statistics = properties.GetIcmpV6Statistics();
    Console.WriteLine (" Too Big Packet ........................ Sent: {0,-10}   Received: {1,-10}",
    statistics.PacketTooBigMessagesSent, statistics.PacketTooBigMessagesReceived);
}
Public Shared Sub ShowIcmpV6BigPacketData() 
    Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
    Dim statistics As IcmpV6Statistics = properties.GetIcmpV6Statistics()
    Console.WriteLine(" Too Big Packet ........................ Sent: {0,-10}   Received: {1,-10}", statistics.PacketTooBigMessagesSent, statistics.PacketTooBigMessagesReceived)

End Sub

Commenti

Un router invia un messaggio di tipo Packet Too Big quando un pacchetto non può essere inoltrato perché è maggiore dell'unità di trasmissione massima (MTU) del collegamento in uscita.

Si applica a