IcmpV6Statistics.MessagesReceived プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
受信したインターネット コントロール メッセージ プロトコル Version 6 (ICMPv6) メッセージの数を取得します。
public:
abstract property long MessagesReceived { long get(); };
public abstract long MessagesReceived { get; }
[System.Runtime.Versioning.UnsupportedOSPlatform("freebsd")]
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("osx")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public abstract long MessagesReceived { get; }
member this.MessagesReceived : int64
[<System.Runtime.Versioning.UnsupportedOSPlatform("freebsd")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("osx")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
member this.MessagesReceived : int64
Public MustOverride ReadOnly Property MessagesReceived As Long
プロパティ値
受信した ICMPv6 メッセージの合計数を示す Int64 値。
- 属性
例
次の例では、このプロパティの値を表示します。
void ShowIcmpV6MessageData()
{
IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
IcmpV6Statistics ^ statistics = properties->GetIcmpV6Statistics();
Console::WriteLine( " Messages ............................ Sent: {0,-10} Received: {1,-10}",
statistics->MessagesSent, statistics->MessagesReceived );
}
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 メッセージは、インターネット プロトコル バージョン 6 (IPv6) を使用して送信されたパケットに関するエラーと情報を伝えるために送信されます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET