IcmpV6Statistics.ErrorsSent 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得已傳送的網際網路控制訊息通訊協定第 6 版 (ICMPv6) 錯誤訊息數目。
public:
abstract property long ErrorsSent { long get(); };
public abstract long ErrorsSent { get; }
[System.Runtime.Versioning.UnsupportedOSPlatform("freebsd")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("osx")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public abstract long ErrorsSent { get; }
member this.ErrorsSent : int64
[<System.Runtime.Versioning.UnsupportedOSPlatform("freebsd")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("osx")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
member this.ErrorsSent : int64
Public MustOverride ReadOnly Property ErrorsSent As Long
屬性值
Int64 值,指定已傳送的 ICMP 錯誤訊息總數。
- 屬性
範例
下列範例會顯示這個屬性的值。
void ShowIcmpV6ErrorData()
{
IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics();
Console::WriteLine( " Errors .............................. Sent: {0,-10} Received: {1,-10}",
statistics->ErrorsSent, statistics->ErrorsReceived );
}
public static void ShowIcmpV6ErrorData ()
{
IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
IcmpV6Statistics statistics = properties.GetIcmpV6Statistics();
Console.WriteLine (" Errors .............................. Sent: {0,-10} Received: {1,-10}",
statistics.ErrorsSent, statistics.ErrorsReceived);
}
Public Shared Sub ShowIcmpV6ErrorData()
Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
Dim statistics As IcmpV6Statistics = properties.GetIcmpV6Statistics()
Console.WriteLine(" Errors .............................. Sent: {0,-10} Received: {1,-10}", statistics.ErrorsSent, statistics.ErrorsReceived)
End Sub