Bagikan melalui


IcmpV4Statistics.AddressMaskRepliesSent Properti

Definisi

Mendapatkan jumlah pesan Balasan Masker Alamat Internet Control Message Protocol versi 4 (ICMPv4) yang dikirim.

public:
 abstract property long AddressMaskRepliesSent { long get(); };
public abstract long AddressMaskRepliesSent { get; }
member this.AddressMaskRepliesSent : int64
Public MustOverride ReadOnly Property AddressMaskRepliesSent As Long

Nilai Properti

Nilai Int64 yang menentukan jumlah total pesan Balasan Masker Alamat yang dikirim.

Contoh

Contoh berikut menampilkan nilai properti ini.

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 );
}
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);
}
Public Shared Sub ShowAddressMaskData() 
    Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
    Dim statistics As IcmpV4Statistics = 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)

End Sub

Keterangan

Pesan Permintaan Masker Alamat dan Balasan digunakan untuk menentukan jumlah bit dalam subnet mask untuk subnet lokal.

Berlaku untuk