IcmpV6Statistics.PacketTooBigMessagesSent 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取发送的 Internet 控制消息协议版本 6 (ICMPv6) 数据包太大消息数。
public:
abstract property long PacketTooBigMessagesSent { long get(); };
public abstract long PacketTooBigMessagesSent { get; }
member this.PacketTooBigMessagesSent : int64
Public MustOverride ReadOnly Property PacketTooBigMessagesSent 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) 而无法转发时,路由器会发送数据包太大的消息。