IcmpV6Statistics.PacketTooBigMessagesSent Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém o número de mensagens de pacote grande demais de ICMPv6 (protocolo ICMPv6) enviadas.
public:
abstract property long PacketTooBigMessagesSent { long get(); };
public abstract long PacketTooBigMessagesSent { get; }
member this.PacketTooBigMessagesSent : int64
Public MustOverride ReadOnly Property PacketTooBigMessagesSent As Long
Valor da propriedade
Um Int64 valor que especifica o número total de mensagens de pacote ICMP muito grandes enviadas.
Exemplos
O exemplo a seguir exibe o valor dessa propriedade.
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
Comentários
Um roteador envia uma mensagem Packet Too Big quando um pacote não pode ser encaminhado porque é maior que a MTU (unidade de transmissão máxima) do link de saída.