IcmpV4Statistics.TimestampRequestsSent プロパティ
メモ : このプロパティは、.NET Framework version 2.0 で新しく追加されたものです。
送信したインターネット コントロール メッセージ プロトコル Version 4 (ICMPv4) タイムスタンプ要求メッセージの数を取得します。
名前空間: System.Net.NetworkInformation
アセンブリ: System (system.dll 内)
構文


Public Shared Sub ShowTimestampData() Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties() Dim statistics As IcmpV4Statistics = properties.GetIcmpV4Statistics() Console.WriteLine(" Timestamp Requests .................. Sent: {0,-10} Received: {1,-10}", statistics.TimestampRequestsSent, statistics.TimestampRequestsReceived) Console.WriteLine(" Timestamp Replies ................... Sent: {0,-10} Received: {1,-10}", statistics.TimestampRepliesSent, statistics.TimestampRepliesReceived) End Sub 'ShowTimestampData
public static void ShowTimestampData() { IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties(); IcmpV4Statistics statistics = properties.GetIcmpV4Statistics(); Console.WriteLine(" Timestamp Requests .................. Sent: {0,-10} Received: {1,-10}", statistics.TimestampRequestsSent, statistics.TimestampRequestsReceived); Console.WriteLine(" Timestamp Replies ................... Sent: {0,-10} Received: {1,-10}", statistics.TimestampRepliesSent, statistics.TimestampRepliesReceived); }

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- IcmpV4Statistics.TimestampRequestsSent プロパティのページへのリンク