IcmpV4Statistics.ErrorsReceived 属性

定义

获取接收到的 Internet 控制消息协议版本 4 (ICMPv4) 错误消息的数目。

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

属性值

Int64

一个 Int64 值,指定接收到的 ICMP 错误信息的总数。

示例

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

void ShowIcmpV4ErrorData()
{
   IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
   IcmpV4Statistics ^ statistics = properties->GetIcmpV4Statistics();
   Console::WriteLine( "  Errors .............................. Sent: {0,-10}   Received: {1,-10}", 
      statistics->ErrorsSent, 
      statistics->ErrorsReceived );
}
public static void ShowIcmpV4ErrorData()
{
    IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
    IcmpV4Statistics statistics = properties.GetIcmpV4Statistics();
    Console.WriteLine("  Errors .............................. Sent: {0,-10}   Received: {1,-10}",
        statistics.ErrorsSent, statistics.ErrorsReceived);
}
Public Shared Sub ShowIcmpV4ErrorData() 
    Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
    Dim statistics As IcmpV4Statistics = properties.GetIcmpV4Statistics()
    Console.WriteLine("  Errors .............................. Sent: {0,-10}   Received: {1,-10}", statistics.ErrorsSent, statistics.ErrorsReceived)

End Sub

适用于