IcmpV4Statistics.AddressMaskRepliesSent Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera liczbę wysłanych komunikatów 4 (ICMPv4) maski adresów protokołu Internet Control Message Protocol.
public:
abstract property long AddressMaskRepliesSent { long get(); };
public abstract long AddressMaskRepliesSent { get; }
member this.AddressMaskRepliesSent : int64
Public MustOverride ReadOnly Property AddressMaskRepliesSent As Long
Wartość właściwości
Wartość Int64 określająca łączną liczbę wysłanych komunikatów odpowiedź maski adresów.
Przykłady
Poniższy przykład przedstawia wartość tej właściwości.
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
Uwagi
Komunikaty maski adresów i odpowiedzi służą do określania liczby bitów w maski podsieci dla podsieci lokalnej.