The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
IcmpV4Statistics.AddressMaskRequestsReceived Property
.NET Framework 3.0
Gets the number of Internet Control Message Protocol version 4 (ICMPv4) Address Mask Request messages that were received.
Namespace: System.Net.NetworkInformation
Assembly: System (in system.dll)
Assembly: System (in system.dll)
/** @property */ public abstract long get_AddressMaskRequestsReceived ()
public abstract function get AddressMaskRequestsReceived () : long
Not applicable.
Property Value
An Int64 value that specifies the total number of Address Mask Request messages that were received.The following example displays the value of this property.
public static void ShowAddressMaskData() { IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties(); IcmpV4Statistics statistics = properties.GetIcmpV4Statistics(); Console.WriteLine(" Address Mask Requests ............... Sent: {0,-10} Received: {1,-10}", statistics.AddressMaskRequestsSent, statistics.AddressMaskRequestsReceived); Console.WriteLine(" Address Mask Replies ................ Sent: {0,-10} Received: {1,-10}", statistics.AddressMaskRepliesSent, statistics.AddressMaskRepliesReceived); }
Windows 98, Windows Server 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
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.