IcmpV4Statistics.ParameterProblemsReceived プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
受信したインターネット コントロール メッセージ プロトコル Version 4 (ICMPv4) パラメーター異常メッセージの数を取得します。
public:
abstract property long ParameterProblemsReceived { long get(); };
public abstract long ParameterProblemsReceived { get; }
member this.ParameterProblemsReceived : int64
Public MustOverride ReadOnly Property ParameterProblemsReceived As Long
プロパティ値
受信した ICMP パラメーター異常メッセージの合計数を示す Int64。
例
次の例では、このプロパティの値を表示します。
void ShowParameterData()
{
IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties();
IcmpV4Statistics ^ statistics = properties->GetIcmpV4Statistics();
Console::WriteLine( " Parameter Problems .................. Sent: {0,-10} Received: {1,-10}",
statistics->ParameterProblemsSent,
statistics->ParameterProblemsReceived );
}
public static void ShowParameterData()
{
IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
IcmpV4Statistics statistics = properties.GetIcmpV4Statistics();
Console.WriteLine(" Parameter Problems .................. Sent: {0,-10} Received: {1,-10}",
statistics.ParameterProblemsSent, statistics.ParameterProblemsReceived);
}
Public Shared Sub ShowParameterData()
Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
Dim statistics As IcmpV4Statistics = properties.GetIcmpV4Statistics()
Console.WriteLine(" Parameter Problems .................. Sent: {0,-10} Received: {1,-10}", statistics.ParameterProblemsSent, statistics.ParameterProblemsReceived)
End Sub
注釈
パラメーター 問題メッセージは、パケット ヘッダーの内容の処理中にホスト コンピューターまたはルーターで問題が発生したときに送信されます (無効な IPv4 オプションや無効な次ヘッダーの種類が検出された場合など)。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET