IcmpV6Statistics.MessagesSent 属性

定义

获取发送的 Internet 控制消息协议版本 6 (ICMPv6) 消息数。

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

属性值

一个 Int64 值,该值指定发送的 ICMPv6 消息总数。

示例

以下示例显示此属性的值。

public static void ShowIcmpV6MessageData ()
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    IcmpV6Statistics statistics = properties.GetIcmpV6Statistics();
    Console.WriteLine ("  Messages ............................ Sent: {0,-10}   Received: {1,-10}",
        statistics.MessagesSent, statistics.MessagesReceived);
}
Public Shared Sub ShowIcmpV6MessageData() 
    Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
    Dim statistics As IcmpV6Statistics = properties.GetIcmpV6Statistics()
    Console.WriteLine("  Messages ............................ Sent: {0,-10}   Received: {1,-10}", statistics.MessagesSent, statistics.MessagesReceived)

End Sub

注解

ICMPv6 消息用于传达使用 Internet 协议版本 6(IPv6)发送的数据包的错误和信息。

适用于