IcmpV6Statistics.PacketTooBigMessagesReceived 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得已收到的網際網路控制訊息通訊協定第 6 版 (ICMPv6)「封包太大」訊息數目。
public:
abstract property long PacketTooBigMessagesReceived { long get(); };
public abstract long PacketTooBigMessagesReceived { get; }
member this.PacketTooBigMessagesReceived : int64
Public MustOverride ReadOnly Property PacketTooBigMessagesReceived As Long
屬性值
Int64 值,指定已收到的 ICMP「封包太大」訊息總數。
範例
下列範例會顯示這個屬性的值。
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
備註
路由器在封包無法轉送時傳送封包太大訊息,因為它大於傳出連結的最大傳輸單位 (MTU) 。